:root {
    color-scheme: light;
    --bg: #f6f4f1;
    --bg-soft: #efe8e6;
    --surface: #ffffff;
    --text: #1f1a1a;
    --text-soft: #4c4444;
    --line: #dccfcb;
    --brand: #b53b7b;
    --brand-deep: #7e2353;
    --accent: #f2b9cf;
    --focus: #173f72;
    /* Text on brand-filled surfaces (buttons, skip link): keeps ≥ 4.5:1 in both themes */
    --on-brand: #ffffff;
    --shadow: 0 18px 40px rgba(67, 32, 47, 0.13);
}

:root[data-theme="dark"] {
    color-scheme: dark;
    --bg: #130f13;
    --bg-soft: #1c1620;
    --surface: #241b25;
    --text: #f1e9ef;
    --text-soft: #d7c8d0;
    --line: #4d3a4f;
    --brand: #ee63ab;
    --brand-deep: #f18cc0;
    --accent: #52263f;
    --focus: #97cbff;
    --on-brand: #130f13;
    --shadow: 0 22px 48px rgba(0, 0, 0, 0.45);
}

/* System-dark fallback for pages without the theme script (legal/error pages)
   and for the first paint on index before the script sets data-theme.
   An explicit data-theme="light" (manual toggle) still wins. */
@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
        color-scheme: dark;
        --bg: #130f13;
        --bg-soft: #1c1620;
        --surface: #241b25;
        --text: #f1e9ef;
        --text-soft: #d7c8d0;
        --line: #4d3a4f;
        --brand: #ee63ab;
        --brand-deep: #f18cc0;
        --accent: #52263f;
        --focus: #97cbff;
        --on-brand: #130f13;
        --shadow: 0 22px 48px rgba(0, 0, 0, 0.45);
    }
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    /* Sticky header height: anchor targets and focused elements stay visible (WCAG 2.4.11) */
    scroll-padding-top: 5rem;
}

body {
    margin: 0;
    font-family: "Trebuchet MS", "Gill Sans", "Segoe UI", sans-serif;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text);
    background:
        radial-gradient(circle at 15% 20%, rgba(238, 99, 171, 0.16), transparent 40%),
        radial-gradient(circle at 82% 8%, rgba(187, 62, 127, 0.2), transparent 42%),
        linear-gradient(160deg, var(--bg), var(--bg-soft));
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--brand-deep);
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

a:hover {
    color: var(--brand);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 3px;
}

h1,
h2,
h3 {
    font-family: "Palatino Linotype", "Book Antiqua", Palatino, "URW Palladio L", serif;
    line-height: 1.2;
    margin: 0 0 0.75rem;
}

h1 {
    font-size: clamp(2rem, 4vw, 4rem);
    letter-spacing: 0.01em;
}

h2 {
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.45rem);
}

p {
    margin: 0 0 1rem;
    color: var(--text-soft);
}

.container {
    width: min(1120px, calc(100% - 2.2rem));
    margin-inline: auto;
}

.container.narrow {
    width: min(780px, calc(100% - 2.2rem));
}

.skip-link {
    position: absolute;
    top: -50px;
    left: 0;
    background: var(--brand);
    color: var(--on-brand);
    padding: 0.7rem 1rem;
    z-index: 9999;
}

.skip-link:focus-visible {
    top: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(8px);
    background: color-mix(in srgb, var(--bg) 78%, transparent);
    border-bottom: 1px solid var(--line);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.8rem 0;
}

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

.nav-controls .nav-toggle {
    display: none;
}

.brand {
    color: var(--text);
    text-decoration: none;
    display: inline-flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-kicker {
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.brand-line {
    font-family: "Palatino Linotype", "Book Antiqua", serif;
    font-size: 1rem;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 1.1rem;
    margin: 0;
    padding: 0;
}

.nav-list a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
}

.theme-toggle {
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--text);
    border-radius: 999px;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 200ms ease, background 200ms ease;
}

.theme-toggle:hover {
    border-color: var(--brand);
}

.theme-toggle__icon {
    font-size: 1.15rem;
    line-height: 1;
}

.hero {
    position: relative;
    min-height: 82vh;
    display: grid;
    place-items: stretch;
    overflow: clip;
}

.hero-media,
.hero-media picture,
.hero-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-media img {
    object-fit: cover;
    object-position: center 38%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(130deg, rgba(8, 8, 10, 0.68), rgba(15, 5, 12, 0.38) 45%, rgba(179, 58, 121, 0.18));
}

.hero-video {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0;
    transition: opacity 900ms ease;
    pointer-events: none;
    z-index: 0;
}

.hero-video.is-playing {
    opacity: 1;
}

.hero-video video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 38%;
    pointer-events: none;
}

.hero-sound-toggle {
    position: absolute;
    right: clamp(1rem, 3vw, 2rem);
    bottom: clamp(1rem, 3vw, 2rem);
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(10, 6, 12, 0.55);
    color: #fff;
    font: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.hero-sound-toggle:hover {
    background: rgba(10, 6, 12, 0.78);
    border-color: rgba(255, 255, 255, 0.85);
}

.hero-sound-toggle:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

.hero-sound-icon {
    display: inline-flex;
    align-items: center;
}

.hero-sound-toggle .icon-sound {
    display: none;
}

.hero-sound-toggle[aria-pressed="true"] .icon-muted {
    display: none;
}

.hero-sound-toggle[aria-pressed="true"] .icon-sound {
    display: inline-flex;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: end;
    gap: 1rem;
    padding-block: clamp(6rem, 14vw, 10rem) 3.2rem;
}

.hero-content h1,
.hero-eyebrow,
.hero-subline {
    color: #fff;
}

.hero-eyebrow {
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.82rem;
}

.hero-subline {
    margin: 0;
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    font-family: "Palatino Linotype", "Book Antiqua", serif;
}

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

.btn {
    border-radius: 999px;
    padding: 0.62rem 1.05rem;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease, color 200ms ease;
}

.btn-primary {
    background: linear-gradient(145deg, var(--brand), var(--brand-deep));
    color: var(--on-brand);
}

.btn-primary:hover {
    color: var(--on-brand);
    box-shadow: 0 10px 22px rgba(126, 35, 83, 0.32);
    transform: translateY(-1px);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.44);
}

.btn-ghost:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.24);
    border-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 10px 22px rgba(126, 35, 83, 0.32);
    transform: translateY(-1px);
}

.section {
    padding: clamp(2.9rem, 7vw, 6rem) 0;
}

.section-alt {
    background: color-mix(in srgb, var(--surface) 90%, var(--accent));
    border-block: 1px solid var(--line);
}

.split-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: center;
}

.frame-card {
    padding: 0.75rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 1.2rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.frame-card img {
    border-radius: 0.85rem;
    display: block;
    width: 100%;
    aspect-ratio: 3 / 1.5;
    object-fit: cover;
    object-position: center 95%;
}

.artist-grid {
    display: grid;
    gap: 1.2rem;
}

.artist-card {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 1.2rem;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.artist-card picture,
.artist-card img {
    width: 100%;
    height: auto;
}

.artist-card picture {
    position: relative;
    display: block;
}

.artist-card img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: unset;
    object-position: unset;
}

.artist-copy {
    padding: 1.2rem;
}

.repertoire-wrap .lead,
#kontakt .lead {
    margin-bottom: 1.35rem;
    font-size: 1.1rem;
}

.repertoire-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.tile {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: var(--shadow);
}

/* Repertoire video film strip */
.video-strip {
    margin-top: 2.4rem;
}

.video-strip__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.1rem;
}

.video-strip__intro {
    margin: 0;
    max-width: 60ch;
    color: var(--text-soft);
}

.video-strip__channel {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 600;
    color: var(--brand-deep);
    text-decoration: none;
    white-space: nowrap;
    border-radius: 6px;
}

.video-strip__channel:hover {
    text-decoration: underline;
}

.video-strip__channel:focus-visible {
    outline: 2px solid var(--focus);
    outline-offset: 3px;
}

.video-strip__stage {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 1.25rem;
    overflow: hidden;
    background: radial-gradient(circle at 50% 40%, #201018, #000);
    box-shadow:
        0 26px 60px rgba(67, 32, 47, 0.32),
        0 0 0 1px var(--line);
}

.video-strip__stage::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    z-index: 4;
}

.video-strip__player,
.video-strip__player iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-strip__player iframe {
    opacity: 0;
    transition: opacity 600ms ease;
}

.video-strip__player iframe.is-ready {
    opacity: 1;
}

.video-strip__player[hidden] {
    display: none;
}

.video-strip__poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    margin: 0;
    cursor: pointer;
    background: transparent;
}

.video-strip__poster[hidden] {
    display: none;
}

.video-strip__poster img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.92;
    transition: opacity 300ms ease;
    animation: posterDrift 16s ease-in-out infinite alternate;
}

@keyframes posterDrift {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.07);
    }
}

.video-strip__poster:hover img,
.video-strip__poster:focus-visible img {
    opacity: 1;
}

.video-strip__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.55));
    transition: transform 250ms ease;
    pointer-events: none;
    z-index: 2;
}

.video-strip__play .yt-btn-bg {
    fill: rgba(20, 20, 20, 0.78);
    transition: fill 200ms ease;
}

.video-strip__poster:hover .video-strip__play,
.video-strip__poster:focus-visible .video-strip__play {
    transform: translate(-50%, -50%) scale(1.12);
}

.video-strip__poster:hover .yt-btn-bg,
.video-strip__poster:focus-visible .yt-btn-bg {
    fill: #ff0000;
}

.video-strip__stage-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 3rem 1.3rem 1.05rem;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.01em;
    text-align: left;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.1) 70%, transparent);
    z-index: 2;
    pointer-events: none;
}

.video-strip__poster:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 2px;
}

/* Film band: dark strip with sprocket perforations, like a real reel */
.video-strip__scroller {
    position: relative;
    margin-top: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1.5rem 0.9rem;
    border-radius: 1.1rem;
    background: linear-gradient(135deg, #17111a, #2a1724 55%, #1a0f18);
    box-shadow:
        0 20px 44px rgba(30, 12, 24, 0.35),
        inset 0 0 0 1px rgba(255, 255, 255, 0.07);
    overflow: hidden;
}

.video-strip__scroller::before,
.video-strip__scroller::after {
    content: "";
    position: absolute;
    left: 0.9rem;
    right: 0.9rem;
    height: 0.5rem;
    background-image: radial-gradient(circle at center, rgba(255, 255, 255, 0.24) 0 2.5px, transparent 3px);
    background-size: 1.15rem 0.5rem;
    background-repeat: repeat-x;
    pointer-events: none;
    z-index: 1;
}

.video-strip__scroller::before {
    top: 0.5rem;
}

.video-strip__scroller::after {
    bottom: 0.5rem;
}

.video-strip__list {
    list-style: none;
    margin: 0;
    padding: 0.4rem 0.2rem;
    display: flex;
    gap: 0.9rem;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
    -webkit-overflow-scrolling: touch;
}

.video-strip__list > li {
    flex: 0 0 auto;
    scroll-snap-align: start;
}

.video-strip__item {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    width: 13.5rem;
    text-decoration: none;
    color: #fff;
    border-radius: 0.9rem;
    transition: transform 220ms ease;
}

.video-strip__item:hover {
    transform: translateY(-3px);
}

.video-strip__thumb {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    border-radius: 0.7rem;
    overflow: hidden;
    background: #000;
    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.14);
    transition: box-shadow 220ms ease;
}

.video-strip__item:hover .video-strip__thumb,
.video-strip__item:focus-visible .video-strip__thumb {
    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(255, 255, 255, 0.4);
}

.video-strip__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.92;
    transition: transform 450ms ease, opacity 300ms ease;
}

.video-strip__item:hover .video-strip__thumb img,
.video-strip__item:focus-visible .video-strip__thumb img {
    transform: scale(1.06);
    opacity: 1;
}

.video-strip__badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    width: 2.7rem;
    height: 2.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 0.18rem;
    border-radius: 50%;
    background: #ff0000;
    color: #fff;
    font-size: 0.9rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 220ms ease, transform 220ms ease;
}

.video-strip__item:hover .video-strip__badge,
.video-strip__item:focus-visible .video-strip__badge {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.video-strip__item.is-active .video-strip__badge {
    opacity: 0;
}

.video-strip__item.is-active .video-strip__thumb {
    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.55),
        0 0 0 2px #ee63ab,
        0 0 22px rgba(238, 99, 171, 0.45);
}

.video-strip__item.is-active .video-strip__label {
    color: #f6b6d7;
}

.video-strip__item:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

.video-strip__label {
    font-weight: 600;
    font-size: 0.92rem;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.92);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Animated equalizer on the track that is currently playing */
.video-strip__eq {
    position: absolute;
    right: 0.55rem;
    bottom: 0.55rem;
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 1.05rem;
    opacity: 0;
    transition: opacity 250ms ease;
    z-index: 2;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.65));
    pointer-events: none;
}

.video-strip__item.is-active .video-strip__eq {
    opacity: 1;
}

.video-strip__eq i {
    width: 3px;
    height: 45%;
    background: #f6b6d7;
    border-radius: 2px;
    animation: eqBounce 900ms ease-in-out infinite alternate;
}

.video-strip__eq i:nth-child(2) {
    height: 80%;
    animation-delay: -300ms;
}

.video-strip__eq i:nth-child(3) {
    height: 60%;
    animation-delay: -600ms;
}

@keyframes eqBounce {
    from {
        height: 22%;
    }

    to {
        height: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {

    .video-strip__eq i,
    .video-strip__poster img {
        animation: none;
    }
}

.video-strip__nav {
    flex: 0 0 auto;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1.55rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    transition: background 150ms ease, border-color 150ms ease, transform 150ms ease, opacity 150ms ease;
}

.video-strip__nav:hover {
    background: rgba(238, 99, 171, 0.35);
    border-color: rgba(255, 255, 255, 0.55);
    transform: scale(1.06);
}

.video-strip__nav:disabled {
    opacity: 0.3;
    cursor: default;
    transform: none;
}

.video-strip__nav:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.footer-youtube {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-soft);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
}

.footer-youtube:hover {
    color: var(--brand-deep);
}

.footer-youtube svg {
    display: block;
}

.footer-youtube:focus-visible {
    outline: 2px solid var(--focus);
    outline-offset: 3px;
}


.section-head {
    max-width: 60ch;
    margin-bottom: 1.6rem;
}

.eyebrow {
    margin: 0 0 0.4rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--brand-deep);
}

.lead {
    font-size: 1.1rem;
    color: var(--text);
}

.section-cta {
    margin-top: 1.6rem;
}

.btn-lg {
    padding: 0.8rem 1.4rem;
    font-size: 1.05rem;
}

.occasions-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.occasion {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 1rem;
    padding: 1.1rem;
    box-shadow: var(--shadow);
    border-top: 3px solid var(--brand);
}

.occasion h3 {
    margin-bottom: 0.45rem;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    counter-reset: step;
}

.step {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 1rem;
    padding: 1.3rem 1.1rem 1.1rem;
    box-shadow: var(--shadow);
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--brand), var(--brand-deep));
    color: var(--on-brand);
    font-weight: 800;
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
}

.gallery {
    column-count: 4;
    column-gap: 0.9rem;
}

.gallery-item {
    margin: 0;
    margin-bottom: 0.9rem;
    border-radius: 0.9rem;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    break-inside: avoid;
    background: color-mix(in srgb, var(--surface) 86%, var(--bg));
}

.gallery-item img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 400ms ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-item--flipped img {
    transform: scaleX(-1);
}

.gallery-item--flipped:hover img {
    transform: scaleX(-1) scale(1.04);
}

.faq-list {
    display: grid;
    gap: 0.7rem;
}

.faq-list details {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 0.9rem;
    padding: 0 1.1rem;
    box-shadow: var(--shadow);
}

.faq-list summary {
    cursor: pointer;
    font-weight: 700;
    padding: 0.95rem 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    font-size: 1.4rem;
    line-height: 1;
    color: var(--brand-deep);
}

.faq-list details[open] summary::after {
    content: "\2013";
}

.faq-list details p {
    margin: 0 0 1rem;
}

.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.8rem;
    flex-wrap: wrap;
    background: color-mix(in srgb, var(--surface) 88%, var(--accent));
    border: 1px solid var(--line);
    border-radius: 1.2rem;
    padding: clamp(1.6rem, 3vw, 2.4rem);
    box-shadow: var(--shadow);
}

.cta-band__text {
    flex: 1 1 22rem;
}

.cta-band h2 {
    margin-bottom: 0.4rem;
}

.cta-band p {
    margin: 0;
    max-width: 52ch;
}

.cta-band__action {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
}

.cta-band__mail {
    font-weight: 600;
    color: var(--brand-deep);
}

.site-footer {
    padding: 1.2rem 0 2rem;
}

.footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid var(--line);
    padding-top: 1rem;
}

.footer-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1rem;
}

/* Tap target ≥ 24px (WCAG 2.5.8) without changing the visual layout */
.footer-nav a {
    display: inline-block;
    padding-block: 0.25rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.footer-brand p {
    margin: 0;
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* Larger / high-resolution screens: grow the hero so the 16:9 video and the
   portraits are not cropped at the top (avoid cutting off heads), while
   still leaving a hint of the next section visible. */
@media (min-width: 1200px) {
    .hero {
        min-height: 86vh;
    }
}

@media (min-width: 1600px) {
    .hero {
        min-height: 90vh;
    }
}

@media (min-width: 2000px) {
    .hero {
        min-height: 92vh;
    }
}

/* When the viewport is wider than the video (16:9), extra height keeps the
   important part of the frame visible; the video bleed absorbs the rest. */
@media (min-width: 1200px) and (min-aspect-ratio: 16 / 9) {
    .hero {
        min-height: 92vh;
    }
}

@media (max-width: 980px) {

    .split-intro,
    .artist-card,
    .repertoire-grid {
        grid-template-columns: 1fr;
    }

    .occasions-grid,
    .value-grid,
    .steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery {
        column-count: 3;
    }

    .artist-card picture {
        max-height: none;
    }
}

@media (max-width: 820px) {
    .nav-controls .nav-toggle {
        display: inline-flex;
    }

    .nav-list {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        padding: 0.3rem 0 0.5rem;
        background: color-mix(in srgb, var(--bg) 99%, transparent);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow);
        max-height: 0;
        overflow: hidden;
        visibility: hidden;
        opacity: 0;
        transition: max-height 240ms ease, opacity 200ms ease, visibility 0s linear 240ms;
    }

    .nav-list.is-open {
        max-height: 80vh;
        visibility: visible;
        opacity: 1;
        transition: max-height 280ms ease, opacity 200ms ease;
    }

    .nav-list li {
        width: 100%;
    }

    .nav-list a {
        display: block;
        padding: 0.85rem clamp(1.1rem, 5vw, 1.6rem);
        border-bottom: 1px solid color-mix(in srgb, var(--line) 60%, transparent);
    }

    .nav-list li:last-child a {
        border-bottom: none;
    }
}

@media (max-width: 640px) {

    .occasions-grid,
    .value-grid,
    .steps {
        grid-template-columns: 1fr;
    }

    /* Mobile hero: stacked layout — image on top, text below */
    .hero {
        min-height: unset;
        max-height: unset;
        display: flex;
        flex-direction: column;
        overflow: visible;
        background: #0a060c;
    }

    .hero-media {
        position: relative;
        inset: auto;
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
        overflow: hidden;
        flex-shrink: 0;
    }

    .hero-media img {
        object-position: center 30%;
    }

    .hero-overlay {
        display: none;
    }

    .hero-content {
        position: static;
        z-index: auto;
        padding-block: 1.5rem 2rem;
        align-content: start;
        gap: 0.75rem;
    }

    .hero-actions {
        width: 100%;
    }

    .hero-actions .btn {
        flex: 1 1 auto;
        text-align: center;
        justify-content: center;
    }

    .gallery {
        column-count: 2;
    }

    .cta-band {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid {
        flex-direction: column;
        align-items: flex-start;
    }

    .video-strip__nav {
        display: none;
    }

    .video-strip__scroller {
        padding: 1.35rem 0.7rem;
    }

    .video-strip__item {
        width: 11rem;
    }
}

@media (max-width: 480px) {
    .gallery {
        column-count: 1;
    }
}

/* ============================================================
   Error pages (404/50x)
   CSP style-src 'self' blocks inline style attributes, so these
   pages must use classes.
   ============================================================ */
.error-panel {
    text-align: center;
    padding-block: 4rem;
}

.error-cta {
    margin-top: 2rem;
}

/* ============================================================
   Forced colors (Windows High Contrast)
   Backgrounds and gradients are dropped by the UA; give
   background-only controls a real border so they stay visible.
   ============================================================ */
@media (forced-colors: active) {

    .btn,
    .theme-toggle,
    .video-strip__nav,
    .video-strip__poster,
    .video-strip__item .video-strip__thumb,
    .hero-sound-toggle {
        border: 1px solid ButtonText;
    }
}

/* Print styles live in print.css (linked with media="print") */