:root {
    --bg: #F7F5F1;
    --paper: #FFFFFF;
    --ink: #2B2B2B;
    --muted: #9A8F86;
    --line: #E4DFD8;
    --accent: #9A8F86;
    --accent-dark: #7C7168;
    --shadow: 0 6px 20px rgba(0, 0, 0, .04);
    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --heading-weight: 300;
    --display: clamp(3.25rem, 7.2vw, 7.15rem);
    --heading-xl: clamp(2.2rem, 3.55vw, 3.85rem);
    --heading-card: clamp(1.28rem, 1.65vw, 1.75rem);
    --body: 1rem;
    --body-large: var(--body);
    --caption: .9rem;
    --caption-small: .82rem;
    --caption-xs: .72rem;
    --eyebrow: .62rem;
    --display-line: 1.02;
    --heading-line: 1.02;
    --heading-card-line: 1.08;
    --body-line: 1.55;
    --body-large-line: var(--body-line);
    --caption-line: 1.45;
    --control-line: 1.2;
    --symbol-lg: clamp(1.7rem, 2.1vw, 2.25rem);
    --symbol-md: 1.45rem;
    --symbol-mobile: 2rem;
    --display-weight: var(--heading-weight);
    --heading-xl-weight: var(--heading-weight);
    --heading-card-weight: var(--heading-weight);
    --body-large-weight: 400;
    --body-weight: 400;
    --body-letter-spacing: 0;
    --caption-weight: 500;
    --caption-regular-weight: 400;
    --caption-letter-spacing: .05em;
    --eyebrow-color: #8F837A;
    --eyebrow-weight: 500;
    --eyebrow-letter-spacing: .14em;
    --eyebrow-gap: 8px;
    --chapter-text-gap: 14px;
    --meta-size: var(--eyebrow);
    --meta-weight: 500;
    --meta-letter-spacing: .12em;
    --button-min-height: 46px;
    --button-radius: 9px;
    --button-padding: 11px 17px;
    --button-font-size: var(--caption);
    --button-font-weight: var(--caption-weight);
    --button-letter-spacing: var(--body-letter-spacing);
    --button-compact-min-height: 40px;
    --button-compact-padding: 9px 15px;
    --button-compact-font-size: var(--eyebrow);
    --button-small-min-height: 32px;
    --button-small-padding: 6px 10px;
    --button-small-font-size: var(--caption-small);
    --button-hover-bg: rgba(154, 143, 134, .08);
    --button-hover-border: rgba(124, 113, 104, .42);
    --button-hover-color: #3A3632;
    --button-primary-hover-bg: #A59B93;
    --button-primary-hover-border: #ADA49D;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
    overflow-x: hidden;
    cursor: default;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    font-size: var(--body);
    font-weight: var(--body-weight);
    line-height: var(--body-line);
    overflow-x: hidden;
    cursor: default;
}

a,
button,
[role="button"],
.btn,
.nav-link,
.music-link,
.review-link,
.carousel-arrow,
.button,
.site-nav a,
.music-links a,
.review-card-link,
.review-row-arrow,
.review-text-scroll,
.footer-links a,
.service-choice input + span,
a *,
button *,
[role="button"] *,
.btn *,
.nav-link *,
.music-link *,
.review-link *,
.carousel-arrow *,
.button *,
.site-nav a *,
.music-links a *,
.review-card-link *,
.review-row-arrow *,
.review-text-scroll *,
.footer-links a *,
.service-choice input + span * {
    cursor: pointer !important;
}

a {
    color: inherit;
}

input,
textarea,
select {
    cursor: text !important;
}

select,
input[type="checkbox"],
input[type="radio"],
label[for],
label[for] *,
.menu-toggle,
.menu-toggle * {
    cursor: pointer !important;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px clamp(20px, 5vw, 72px);
    background: linear-gradient(180deg, rgba(43, 43, 43, .50), rgba(43, 43, 43, 0));
    color: #FFFFFF;
    max-width: 100vw;
    min-width: 0;
    transition:
        padding .3s cubic-bezier(.22, 1, .36, 1),
        background-color .3s ease,
        box-shadow .3s ease;
}

.site-header--solid {
    position: sticky;
    background: rgba(43, 43, 43, .94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.site-header--scrolled {
    background: rgba(43, 43, 43, .88);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.brand img {
    width: 180px;
    max-width: 38vw;
    opacity: .94;
    transition:
        width .3s cubic-bezier(.22, 1, .36, 1),
        max-width .3s cubic-bezier(.22, 1, .36, 1),
        opacity .18s ease;
}

.site-nav {
    min-width: 0;
    display: flex;
    gap: clamp(18px, 2.3vw, 34px);
    align-items: center;
    flex-wrap: nowrap;
    justify-content: flex-end;
}

.nav-item {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 120;
    display: grid;
    min-width: 190px;
    padding: 16px 0 10px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 10px;
    background: rgba(43, 43, 43, .92);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .16);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -4px);
    transition: opacity .18s ease, transform .18s ease;
    backdrop-filter: blur(18px);
}

.nav-item--has-dropdown:hover .nav-dropdown,
.nav-item--has-dropdown:focus-within .nav-dropdown,
.nav-item--has-dropdown.is-open .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.site-nav .nav-dropdown a {
    position: relative;
    min-height: 32px;
    justify-content: flex-start;
    padding: 7px 16px;
    color: rgba(255, 255, 255, .74);
    font-size: var(--caption-xs);
    letter-spacing: .08em;
    text-shadow: none;
    white-space: nowrap;
}

.site-nav .nav-dropdown a::after {
    left: 16px;
    right: 16px;
    bottom: 5px;
}

.site-nav .nav-dropdown a:hover,
.site-nav .nav-dropdown a:focus-visible,
.site-nav .nav-dropdown a.is-active {
    color: #FFFFFF;
}

.site-nav .nav-dropdown a.is-active::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 50%;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: currentColor;
    transform: translateY(-50%);
    opacity: .72;
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 0;
    min-width: 78px;
    height: var(--button-compact-min-height);
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .82);
    border-radius: var(--button-radius);
    background: rgba(255, 255, 255, .02);
    transition:
        background-color .18s ease,
        border-color .18s ease;
}

.site-nav .language-switcher a {
    min-height: 0;
    width: 38px;
    min-width: 0;
    height: 100%;
    justify-content: center;
    padding: 0 8px;
    border: 0;
    border-radius: 0;
    color: rgba(255, 255, 255, .74);
    font-size: var(--button-compact-font-size);
    font-weight: var(--caption-weight);
    letter-spacing: var(--meta-letter-spacing);
    text-shadow: none;
}

.site-nav .language-switcher a::after {
    display: none;
}

.site-nav .language-switcher a + a {
    border-left: 1px solid rgba(255, 255, 255, .22);
}

.site-nav .language-switcher a.is-active {
    background: rgba(255, 255, 255, .14);
    color: #FFFFFF;
}

.language-switcher:hover,
.language-switcher:focus-within {
    border-color: rgba(255, 255, 255, .96);
    background: rgba(255, 255, 255, .08);
}

.button,
.btn,
.site-nav a[href$="#anfrage"],
.music-links a,
.music-link {
    display: inline-flex;
    min-height: var(--button-control-min-height, var(--button-min-height));
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: var(--button-radius);
    padding: var(--button-control-padding, var(--button-padding));
    text-decoration: none;
    font-size: var(--button-control-font-size, var(--button-font-size));
    font-weight: var(--button-control-font-weight, var(--button-font-weight));
    letter-spacing: var(--button-control-letter-spacing, var(--button-letter-spacing));
    line-height: var(--control-line);
    cursor: pointer !important;
    transition:
        background-color .18s ease,
        border-color .18s ease,
        color .18s ease,
        opacity .18s ease;
}

.button:hover,
.button:focus-visible,
.button.is-hovered,
.btn:hover,
.btn:focus-visible,
.site-nav a[href$="#anfrage"]:hover,
.site-nav a[href$="#anfrage"]:focus-visible,
.site-nav a[href$="#anfrage"].is-hovered,
.music-links a:hover,
.music-links a:focus-visible,
.music-links a.is-hovered,
.music-link:hover,
.music-link:focus-visible {
    border-color: var(--button-hover-border);
    background-color: var(--button-hover-bg);
    color: var(--button-hover-color);
    transform: none;
    box-shadow: none;
}

.button:focus-visible,
.btn:focus-visible,
.site-nav a:focus-visible,
.music-links a:focus-visible,
.review-card-link:focus-visible,
.footer-links a:focus-visible,
.review-row-arrow:focus-visible,
.review-text-scroll:focus-visible {
    outline: 2px solid rgba(124, 113, 104, .45);
    outline-offset: 3px;
}

.site-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 6px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #FFFFFF;
    text-decoration: none;
    font-size: var(--meta-size);
    font-weight: var(--meta-weight);
    letter-spacing: var(--meta-letter-spacing);
    text-transform: uppercase;
    text-shadow: 0 1px 18px rgba(0, 0, 0, .18);
    cursor: pointer !important;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 3px;
    height: 1px;
    background: currentColor;
    opacity: .72;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .22s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-hovered::after {
    transform: scaleX(1);
}

.site-nav a[href$="#anfrage"] {
    --button-control-min-height: var(--button-compact-min-height);
    --button-control-padding: var(--button-compact-padding);
    --button-control-font-size: var(--button-compact-font-size);
    --button-control-font-weight: var(--caption-weight);
    --button-control-letter-spacing: var(--meta-letter-spacing);
    min-height: var(--button-control-min-height);
    border-radius: var(--button-radius);
    border: 1px solid #FFFFFF;
    padding: var(--button-control-padding);
    font-size: var(--button-control-font-size);
    font-weight: var(--button-control-font-weight);
    letter-spacing: var(--button-control-letter-spacing);
    line-height: var(--control-line);
}

.site-nav a[href$="#anfrage"]::after {
    display: none;
}

.site-nav a[href$="#anfrage"]:hover,
.site-nav a[href$="#anfrage"]:focus-visible,
.site-nav a[href$="#anfrage"].is-hovered {
    border-color: rgba(255, 255, 255, .88);
    background-color: rgba(255, 255, 255, .13);
    color: #FFFFFF;
    text-shadow: none;
}

.nav-toggle,
.menu-toggle {
    display: none;
}

.menu-toggle {
    position: relative;
    width: 42px;
    height: 38px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid #FFFFFF;
    border-radius: var(--button-radius);
    background: rgba(43, 43, 43, .18);
    cursor: pointer;
    backdrop-filter: blur(14px);
    transition:
        width .3s cubic-bezier(.22, 1, .36, 1),
        height .3s cubic-bezier(.22, 1, .36, 1),
        gap .3s cubic-bezier(.22, 1, .36, 1),
        background-color .18s ease,
        border-color .18s ease;
}

.menu-toggle span {
    width: 18px;
    height: 1.5px;
    border-radius: 2px;
    background: #FFFFFF;
    transition:
        width .3s cubic-bezier(.22, 1, .36, 1),
        transform .22s ease,
        opacity .22s ease;
}

.nav-toggle:checked + .menu-toggle span:nth-child(1) {
    position: absolute;
    transform: rotate(45deg);
}

.nav-toggle:checked + .menu-toggle span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle:checked + .menu-toggle span:nth-child(3) {
    position: absolute;
    transform: rotate(-45deg);
}

.button--primary {
    border-color: var(--accent);
    background: var(--accent);
    color: #FFFFFF;
}

.button--primary:hover,
.button--primary:focus-visible,
.button--primary.is-hovered {
    border-color: var(--button-primary-hover-border);
    background-color: var(--button-primary-hover-bg);
    color: #FFFFFF;
}

.button--light,
.button--ghost {
    border-color: var(--line);
    background: #FFFFFF;
    color: var(--ink);
}

.button--light:hover,
.button--light:focus-visible,
.button--light.is-hovered,
.button--ghost:hover,
.button--ghost:focus-visible,
.button--ghost.is-hovered {
    border-color: var(--button-hover-border);
    background-color: var(--button-hover-bg);
    color: var(--ink);
}

.has-reveal .reveal-section,
.has-reveal .reveal-item {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
    transition:
        opacity 1750ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 1750ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.has-reveal .button.reveal-item {
    transition:
        opacity 1750ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 1750ms cubic-bezier(0.22, 1, 0.36, 1),
        border-color .2s ease,
        color .2s ease,
        background-color .2s ease;
}

.has-reveal .reveal-section.is-visible,
.has-reveal .reveal-item.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.has-reveal .button.reveal-item.is-visible:hover,
.has-reveal .button.reveal-item.is-visible:focus-visible,
.has-reveal .button.reveal-item.is-visible.is-hovered {
    transform: none;
}

.has-reveal .reveal-statement {
    transform: translate3d(0, 18px, 0);
    transition:
        opacity 2300ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 2300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero {
    --display: clamp(2.8rem, 5.15vw, 5.8rem);
    --display-line: 1.04;
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    padding: clamp(110px, 14vw, 180px) clamp(24px, 5.6vw, 82px) clamp(76px, 8vw, 118px);
    overflow: hidden;
    background: var(--ink);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(43, 43, 43, .62), rgba(43, 43, 43, .38) 48%, rgba(43, 43, 43, .16)),
        rgba(43, 43, 43, .18);
}

.hero-slider {
    position: absolute;
    inset: 0;
    background-color: var(--ink);
    background-position: center center;
    background-size: cover;
}

.hero-slider img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--slide-position, center center);
    opacity: 0;
    transform: scale(1.095) translate3d(-.8%, -.48%, 0);
    transform-origin: center center;
    will-change: opacity, transform;
    animation-name: var(--slide-animation-name, var(--hero-animation-name, heroKenBurns));
    animation-duration: var(--hero-duration, 30s);
    animation-iteration-count: infinite;
    animation-delay: calc((var(--slide-index, 0) * var(--hero-step, 6s)) - var(--hero-duration, 30s));
    animation-timing-function: linear;
    animation-fill-mode: both;
    backface-visibility: hidden;
}

.hero-slider[data-hero-slide-count="1"] img:first-child,
.service-hero__slider[data-hero-slide-count="1"] img:first-child {
    opacity: 1;
}

.hero-slider img.hero-slider__image--redner {
    object-position: center center;
}

.hero-slider img.hero-slider__image--live-person {
    object-position: 34% center;
}

.hero-slider img.hero-slider__image--schauspiel {
    object-position: 68% top;
}

.hero-scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: clamp(15px, 2vw, 26px);
    z-index: 2;
}

.scroll-indicator {
    color: #FFFFFF;
    font-family: var(--sans);
    font-size: var(--symbol-lg);
    font-weight: var(--caption-regular-weight);
    line-height: var(--control-line);
    opacity: .44;
    pointer-events: none;
    transform: translate3d(-50%, 0, 0) scaleX(1.22) scaleY(.82);
    animation: heroScrollHint 3s cubic-bezier(0.22, 1, 0.36, 1) infinite;
    will-change: transform;
}

@keyframes heroScrollHint {
    0%,
    100% {
        transform: translate3d(-50%, 0, 0) scaleX(1.22) scaleY(.82);
    }

    48% {
        transform: translate3d(-50%, 7px, 0) scaleX(1.22) scaleY(.82);
    }
}

@keyframes heroKenBurns {
    0% {
        opacity: 0;
        transform: scale(1.105) translate3d(-1%, -.6%, 0);
    }
    5% {
        opacity: 0;
        transform: scale(1.095) translate3d(-.8%, -.48%, 0);
    }
    12% {
        opacity: 1;
        transform: scale(1.082) translate3d(-.52%, -.32%, 0);
    }
    24% {
        opacity: 1;
        transform: scale(1.058) translate3d(.12%, .06%, 0);
    }
    36% {
        opacity: 0;
        transform: scale(1.031) translate3d(.78%, .44%, 0);
    }
    100% {
        opacity: 0;
        transform: scale(1.031) translate3d(.78%, .44%, 0);
    }
}

@keyframes heroKenBurnsMobile {
    0% {
        opacity: 0;
        transform: scale(1.06) translate3d(-1.1%, -.7%, 0);
    }
    6% {
        opacity: 0;
        transform: scale(1.06) translate3d(-1.1%, -.7%, 0);
    }
    14% {
        opacity: 1;
        transform: scale(1.088) translate3d(-.42%, -.24%, 0);
    }
    32% {
        opacity: 1;
        transform: scale(1.13) translate3d(.72%, .46%, 0);
    }
    42% {
        opacity: 0;
        transform: scale(1.145) translate3d(1.12%, .72%, 0);
    }
    100% {
        opacity: 0;
        transform: scale(1.145) translate3d(1.12%, .72%, 0);
    }
}

@media (max-width: 820px) {
    .hero {
        min-height: 100vh;
        min-height: 100svh;
    }

    .site-header {
        transition: padding .3s cubic-bezier(.22, 1, .36, 1), background-color .3s ease, box-shadow .3s ease;
    }

    .site-header--scrolled {
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .site-header--scrolled .brand img {
        width: 138px;
        max-width: 40vw;
    }

    .hero-slider {
        inset: -4%;
    }

    .hero-slider img {
        transform: scale(1.06) translate3d(-1.1%, -.7%, 0);
        transform-origin: center center;
        animation-name: var(--slide-animation-name, var(--hero-mobile-animation-name, heroKenBurnsMobile));
        animation-duration: var(--hero-mobile-duration, 36s);
        animation-delay: calc((var(--slide-index, 0) * var(--hero-mobile-step, 7.2s)) - var(--hero-mobile-duration, 36s));
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-slider img {
        animation: none;
    }

    .service-hero__slider img {
        animation: none;
    }

    .service-hero__slider img:first-child {
        opacity: 1;
    }

    .service-page .service-timeline li:not(:last-child)::after {
        animation: none;
    }

    .service-hero__media img {
        animation: none;
    }

    .service-page .service-gallery__item img {
        transition: none;
    }

    .hero-slider img:first-child {
        opacity: 1;
    }

    .scroll-indicator {
        animation: none;
        will-change: auto;
    }

    .site-header,
    .brand img,
    .menu-toggle,
    .menu-toggle span {
        transition-duration: .01ms !important;
    }
}

.hero__inner {
    position: relative;
    z-index: 2;
    max-width: min(920px, 68vw);
    color: #FFFFFF;
}

.eyebrow,
.section-kicker,
.portal-access__eyebrow {
    margin: 0 0 var(--eyebrow-gap);
    color: var(--eyebrow-color);
    font-size: var(--eyebrow);
    font-weight: var(--eyebrow-weight);
    letter-spacing: var(--eyebrow-letter-spacing);
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: var(--serif);
    font-weight: var(--heading-weight);
    letter-spacing: var(--body-letter-spacing);
    line-height: var(--heading-line);
}

h1 {
    font-size: var(--display);
    font-weight: var(--display-weight);
    line-height: var(--display-line);
}

.hero h1 {
    max-width: 100%;
}

.hero-title__line {
    display: block;
}

.hero__roles {
    max-width: min(100%, 680px);
    margin: clamp(18px, 2.1vw, 28px) 0 0;
    color: #FFFFFF;
    opacity: .9;
    font-size: var(--meta-size);
    font-weight: var(--meta-weight);
    letter-spacing: var(--meta-letter-spacing);
    line-height: var(--caption-line);
    text-transform: uppercase;
}

h2 {
    font-size: var(--heading-xl);
    font-weight: var(--heading-xl-weight);
    line-height: var(--heading-line);
}

h3 {
    font-size: var(--heading-card);
    font-weight: var(--heading-card-weight);
    line-height: var(--heading-card-line);
}

.review-grid,
.feature-list {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.statement,
.services,
.split-feature,
.person-section,
.reviews-section,
.inquiry-section {
    width: min(1320px, calc(100vw - 40px));
    margin: clamp(30px, 5vw, 58px) auto;
}

.statement {
    max-width: 1320px;
    padding: clamp(34px, 5vw, 64px);
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--paper);
    box-shadow: var(--shadow);
    text-align: center;
}

.statement,
.person-section,
.split-feature,
.reviews-section,
.music-section,
.inquiry-section {
    scroll-margin-top: 92px;
}

.statement .section-kicker {
    margin-bottom: var(--eyebrow-gap);
}

.statement h2 {
    max-width: 960px;
    margin: 0 auto;
    font-size: var(--heading-xl);
    line-height: var(--heading-line);
}

.statement p:not(.section-kicker) {
    max-width: min(980px, calc(100% - 48px));
    margin: 28px auto 0;
    text-align: center;
    color: var(--muted);
    font-size: var(--body-large);
    font-weight: var(--body-large-weight);
    line-height: var(--body-large-line);
    text-wrap: balance;
}

.statement-copy span {
    display: inline;
    color: var(--accent);
    font-weight: var(--caption-weight);
}

.services {
    scroll-margin-top: 88px;
}

.section-head p:not(.section-kicker) {
    max-width: 780px;
    margin: 0;
    font-size: var(--body-large);
    font-weight: var(--body-large-weight);
    line-height: var(--body-large-line);
}

.section-intro-stack {
    display: grid;
    gap: 12px;
    width: 100%;
    max-width: 1120px;
}

.section-head .section-intro-stack p {
    max-width: none;
    margin: 0;
    color: var(--ink);
    font-size: var(--body-large);
    font-weight: var(--body-large-weight);
    line-height: var(--body-large-line);
}

.section-head h2,
.person-copy > h2,
.eventportal-title,
.music-section__head h2,
.inquiry-copy h2 {
    margin-bottom: var(--chapter-text-gap);
}

.section-head {
    margin-bottom: 18px;
}

.services .section-head h2 {
    margin-bottom: 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

.content-carousel {
    scroll-behavior: smooth;
}

.service-card,
.review-card,
.person-section,
.inquiry-section {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.service-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.service-card img {
    width: 100%;
    aspect-ratio: 16 / 11;
    display: block;
    object-fit: cover;
    object-position: center center;
    transition: transform .8s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:nth-child(6) img {
    object-position: center 38%;
}

.service-card > div {
    padding: 20px;
}

.service-card > div {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 8px;
}

.service-card h3 {
    font-size: var(--heading-card);
    line-height: var(--heading-card-line);
}

.service-card p:not(.section-kicker) {
    margin: 0;
    font-size: var(--body);
    font-weight: var(--body-weight);
    line-height: var(--body-line);
}

.service-card__copy {
    display: grid;
    gap: 6px;
    color: var(--muted);
}

.service-card__copy p {
    margin: 0;
}

.service-card > div > p:not(.section-kicker),
.service-card p:last-child,
.review-card p {
    color: var(--muted);
}

.service-card__more {
    width: max-content;
    max-width: 100%;
    margin-top: auto;
    padding-top: 16px;
    color: var(--muted);
    font-size: var(--caption);
    font-weight: var(--caption-weight);
    line-height: var(--caption-line);
    letter-spacing: var(--caption-letter-spacing);
    text-decoration: none;
    text-transform: uppercase;
    transition: color .2s ease, opacity .2s ease;
}

.service-card:hover,
.service-card:focus-visible {
    border-color: color-mix(in srgb, var(--line) 70%, var(--ink) 30%);
    box-shadow: 0 18px 46px rgba(40, 34, 29, .11);
    transform: translate3d(0, -2px, 0);
}

.service-card:hover img,
.service-card:focus-visible img {
    transform: scale(1.025);
}

.service-card:hover .service-card__more,
.service-card:focus-visible .service-card__more {
    color: var(--ink);
}

.split-feature {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(340px, .58fr);
    gap: clamp(28px, 4.4vw, 68px);
    align-items: center;
    padding: clamp(30px, 5vw, 68px);
    border: 1px solid var(--line);
    border-radius: 12px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, .18)),
        var(--paper);
    box-shadow: var(--shadow);
}

#eventportal {
    grid-template-columns: minmax(0, .86fr) minmax(340px, .62fr);
    gap: clamp(20px, 2.6vw, 36px);
    padding: clamp(22px, 3vw, 36px);
    scroll-margin-top: 104px;
}

.eventportal-title {
    font-size: var(--heading-xl);
    line-height: var(--heading-line);
}

.eventportal-lead {
    max-width: 680px;
    margin: 0 0 10px;
    color: var(--ink);
    font-family: var(--sans);
    font-size: var(--body-large);
    font-weight: var(--body-large-weight);
    line-height: var(--body-large-line);
}

.eventportal-copy p {
    max-width: 680px;
    margin: 0;
}

.eventportal-copy p + p {
    margin-top: 8px;
    color: var(--ink);
    font-weight: var(--caption-weight);
}

.eventportal-benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: clamp(14px, 1.7vw, 20px);
}

.eventportal-benefit {
    min-height: 0;
    border: 1px solid rgba(150, 140, 130, .2);
    border-radius: 10px;
    padding: 12px 13px;
    background: rgba(255, 255, 255, .48);
    box-shadow: 0 14px 34px rgba(40, 34, 29, .045);
}

.eventportal-benefit h3 {
    margin: 0 0 6px;
    color: var(--ink);
    font-family: var(--sans);
    font-size: var(--body);
    font-weight: var(--caption-weight);
    line-height: var(--body-line);
}

.eventportal-benefit p {
    margin: 0;
    color: var(--muted);
    font-size: var(--caption);
    line-height: var(--caption-line);
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.feature-list span {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 15px 16px;
    background: #FFFFFF;
    color: var(--ink);
    box-shadow: var(--shadow);
    font-weight: var(--caption-weight);
    font-size: var(--body);
    line-height: var(--body-line);
}

.feature-list span::before {
    content: "✓";
    flex: 0 0 auto;
    color: var(--accent);
    font-weight: var(--caption-weight);
}

.feature-list span:first-child {
    font-weight: var(--caption-weight);
}

.feature-subline {
    margin: 10px 0 14px;
    color: var(--ink);
    font-weight: var(--caption-weight);
}

.portal-access {
    display: grid;
    width: min(100%, 620px);
    justify-self: end;
    justify-items: center;
}

.portal-showcase {
    display: block;
    overflow: hidden;
    border: 1px solid rgba(150, 140, 130, .22);
    border-radius: 12px;
    background: rgba(255, 255, 255, .58);
    box-shadow:
        0 18px 44px rgba(40, 34, 29, .1),
        inset 0 1px 0 rgba(255, 255, 255, .84);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.portal-showcase:hover,
.portal-showcase:focus-visible {
    border-color: color-mix(in srgb, var(--line) 70%, var(--ink) 30%);
    box-shadow: 0 22px 54px rgba(40, 34, 29, .14);
    transform: translate3d(0, -2px, 0);
}

.portal-showcase img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}
.portal-access__login {
    width: min(100%, 240px);
    justify-self: center;
    margin-top: 16px;
}

.portal-access__note {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: var(--caption);
    line-height: var(--caption-line);
    text-align: center;
}
.reviews-section {
    padding: 0;
    background: transparent;
}

.review-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 36px) / 3);
    gap: 18px;
    margin: 8px 0 18px;
    padding: 2px 2px 18px;
    align-items: stretch;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-padding-inline: 2px;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--line);
    -webkit-overflow-scrolling: touch;
}

.review-grid::-webkit-scrollbar {
    height: 4px;
}

.review-grid::-webkit-scrollbar-track {
    background: var(--line);
    border-radius: 12px;
}

.review-grid::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 12px;
}

.review-carousel {
    position: relative;
    margin-top: 18px;
}

.review-row-nav {
    position: absolute;
    top: 0;
    bottom: 18px;
    left: 0;
    right: 0;
    z-index: 4;
    pointer-events: none;
}

.hero::before,
.site-nav a::after,
.footer-links a::after,
.feature-list span::before,
.portal-access .feature-list span::before,
.services-track-panel::after {
    pointer-events: none;
}

.review-row-arrow {
    appearance: none;
    -webkit-appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    min-height: 34px;
    padding: 0;
    border: 0 !important;
    border-radius: 0;
    background: transparent !important;
    box-shadow: none !important;
    color: var(--muted);
    cursor: pointer !important;
    pointer-events: auto;
    transition: color .18s ease, opacity .18s ease, transform .18s ease;
}

.review-row-arrow[hidden] {
    display: none;
}

.review-row-arrow--prev {
    position: absolute;
    top: 50%;
    left: -52px;
    transform: translateY(-50%);
}

.review-row-arrow--next {
    position: absolute;
    top: 50%;
    right: -52px;
    transform: translateY(-50%);
}

.review-row-arrow .scroll-indicator {
    color: currentColor;
    font-family: var(--sans);
    font-size: var(--symbol-lg);
    line-height: var(--control-line);
    opacity: .58;
    transform: scaleX(.82) scaleY(1.22);
    animation: reviewScrollHint 3s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.review-row-arrow--prev .scroll-indicator {
    animation-name: reviewScrollBackHint;
}

.review-row-arrow:hover .scroll-indicator,
.review-row-arrow:focus-visible .scroll-indicator,
.review-row-arrow.is-hovered .scroll-indicator,
.review-text-scroll:hover .scroll-indicator,
.review-text-scroll:focus-visible .scroll-indicator,
.review-text-scroll.is-hovered .scroll-indicator {
    opacity: .95;
    color: var(--accent-dark);
}

@keyframes reviewScrollHint {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scaleX(.82) scaleY(1.22);
    }

    48% {
        transform: translate3d(7px, 0, 0) scaleX(.82) scaleY(1.22);
    }
}

@keyframes reviewScrollBackHint {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scaleX(.82) scaleY(1.22);
    }

    48% {
        transform: translate3d(-7px, 0, 0) scaleX(.82) scaleY(1.22);
    }
}

.review-card {
    display: flex;
    flex-direction: column;
    min-height: 330px;
    box-shadow: var(--shadow);
    overflow: hidden;
    scroll-snap-align: start;
}

.review-card div {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
}

.review-card .stars {
    margin: 0;
}

.review-text {
    flex: 1 1 auto;
    max-height: 8.8em;
    margin: 0;
    padding-right: 8px;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--line);
    font-size: var(--body);
    font-weight: var(--body-weight);
    line-height: var(--body-line);
}

.review-text::-webkit-scrollbar {
    width: 4px;
}

.review-text::-webkit-scrollbar-track {
    background: var(--line);
    border-radius: 12px;
}

.review-text::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 12px;
}

.review-time {
    margin: 0;
    color: var(--muted);
    font-size: var(--caption);
    font-weight: var(--caption-weight);
}

.review-card-link {
    flex: 0 0 auto;
    display: inline-flex;
    align-self: flex-start;
    margin-top: 4px;
    color: var(--muted);
    font-size: var(--caption);
    font-weight: var(--caption-weight);
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer !important;
    transition: color .2s ease, text-decoration-color .2s ease, opacity .2s ease;
}

.review-card-link:hover,
.review-card-link:focus-visible,
.review-card-link.is-hovered {
    color: var(--button-hover-color);
    text-decoration-color: var(--accent-dark);
    transform: none;
}

.review-all-link {
    display: flex;
    width: max-content;
    max-width: 100%;
    margin: 20px auto 0;
}

.review-text-scroll {
    appearance: none;
    -webkit-appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-end;
    width: 34px;
    height: 26px;
    margin: -4px 0 0;
    padding: 0;
    border: 0 !important;
    border-radius: 0;
    background: transparent !important;
    box-shadow: none !important;
    color: var(--muted);
    cursor: pointer !important;
    transition: color .18s ease, opacity .18s ease, transform .18s ease;
}

.review-text-scroll[hidden] {
    display: none;
}

.review-text-scroll .scroll-indicator {
    color: currentColor;
    font-size: var(--symbol-md);
    opacity: .58;
    transform: scaleX(1.22) scaleY(.82);
    animation: reviewTextScrollHint 3.4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

@keyframes reviewTextScrollHint {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scaleX(1.22) scaleY(.82);
    }

    48% {
        transform: translate3d(0, 5px, 0) scaleX(1.22) scaleY(.82);
    }
}

.person-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, .54fr);
    gap: clamp(22px, 3.4vw, 44px);
    align-items: stretch;
    padding: clamp(24px, 3.8vw, 42px);
}

.person-copy {
    align-self: center;
}

.person-copy > h2 {
    max-width: 860px;
    font-size: var(--heading-xl);
    line-height: var(--heading-line);
}

.person-copy p:not(.section-kicker),
.person-copy .statement-copy {
    max-width: 840px;
    margin: 10px 0 0;
    color: var(--muted);
    font-size: var(--body-large);
    font-weight: var(--body-large-weight);
    line-height: var(--body-large-line);
}

.person-copy > h2 + p {
    margin-top: 0;
}

.person-copy .statement-copy {
    margin-top: 18px;
    text-wrap: balance;
}

.person-copy .statement-copy span {
    color: var(--accent);
    font-weight: var(--body-large-weight);
}

.person-copy .statement-copy em {
    font-style: italic;
}

.person-intro-title {
    margin-top: clamp(18px, 2.5vw, 28px);
    font-size: var(--heading-card);
    font-weight: var(--heading-card-weight);
    line-height: var(--heading-card-line);
}

.person-signoff {
    margin-top: clamp(20px, 2.4vw, 30px) !important;
    color: var(--ink) !important;
    font-weight: var(--caption-weight);
}

.person-copy p:last-of-type {
    margin-bottom: clamp(10px, 1.6vw, 18px);
}

.person-section + .services {
    margin-top: clamp(36px, 5.5vw, 64px);
}

.review-proof {
    display: grid;
    gap: 12px;
    width: min(1120px, 100%);
    margin-top: 0;
}

.review-proof p {
    margin: 0;
}

.review-proof-lead {
    color: var(--ink);
    font-size: var(--body);
    font-weight: var(--body-weight);
    line-height: var(--body-line);
}

.review-proof-sources {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
    color: var(--ink);
    font-size: var(--caption);
    font-weight: var(--caption-weight);
    line-height: var(--caption-line);
}

.review-proof-sources p {
    display: inline-flex;
    align-items: baseline;
    flex: 0 0 auto;
    gap: 8px;
    white-space: nowrap;
}

.review-proof-sources span {
    color: var(--accent);
    font-size: var(--caption);
    letter-spacing: var(--caption-letter-spacing);
}

.review-proof-sources strong {
    font-weight: var(--caption-weight);
}

.review-proof-note {
    max-width: 1120px;
    color: var(--muted);
    font-size: var(--caption-small);
    font-weight: var(--caption-regular-weight);
    line-height: var(--caption-line);
}

.reference-strip {
    width: min(1320px, calc(100vw - 40px));
    margin: clamp(18px, 3vw, 36px) auto clamp(36px, 5vw, 68px);
    overflow: hidden;
}

.reference-strip .section-kicker {
    margin: 0 0 var(--eyebrow-gap);
    text-align: center;
}

.reference-marquee {
    overflow: hidden;
    padding: 17px 0;
    border-top: 1px solid rgba(150, 140, 130, .17);
    border-bottom: 1px solid rgba(150, 140, 130, .17);
    cursor: default;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.reference-track {
    display: flex;
    align-items: center;
    gap: clamp(36px, 5vw, 74px);
    width: max-content;
    animation: reference-marquee 72s linear infinite;
}

.reference-logo {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    min-width: 104px;
}

.reference-logo img {
    display: block;
    width: auto;
    max-width: 158px;
    height: clamp(20px, 1.75vw, 30px);
    object-fit: contain;
    opacity: .62;
    filter: brightness(0) saturate(100%) invert(62%) sepia(7%) saturate(469%) hue-rotate(346deg) brightness(90%) contrast(86%);
}

.music-section {
    width: min(1320px, calc(100vw - 40px));
    margin: clamp(38px, 6vw, 76px) auto;
}

.music-section__head {
    max-width: 960px;
    margin: 0 0 22px;
    text-align: left;
}

.music-section__head h2 {
    font-size: var(--heading-xl);
    line-height: var(--heading-line);
}

.music-section__head p:not(.section-kicker) {
    max-width: 960px;
    margin: 0;
    color: var(--muted);
    font-size: var(--body-large);
    font-weight: var(--body-large-weight);
    line-height: var(--body-large-line);
}

.music-section__head p:not(.section-kicker) + p:not(.section-kicker) {
    margin-top: 8px;
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.music-card {
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(170px, 220px) minmax(0, 1fr);
    align-items: stretch;
    min-height: 100%;
    overflow: hidden;
    padding: 18px;
    gap: clamp(16px, 2vw, 24px);
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--paper);
    box-shadow: var(--shadow);
}

.music-card img {
    width: 100%;
    display: block;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    object-fit: cover;
}

.music-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
    padding: 6px 0;
}

.music-card h3 {
    margin: 0;
    font-size: var(--heading-card);
    line-height: var(--heading-card-line);
}

.music-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
    margin-top: auto;
    padding-top: 8px;
}

.music-links a {
    --button-control-min-height: 34px;
    --button-control-padding: 8px 13px;
    --button-control-font-size: var(--button-small-font-size);
    --button-control-font-weight: var(--caption-weight);
    --button-control-letter-spacing: var(--caption-letter-spacing);
    border-color: rgba(150, 140, 130, .28);
    border-radius: 10px;
    color: var(--accent-dark);
    text-transform: uppercase;
    cursor: pointer !important;
}

.music-links a:hover,
.music-links a:focus-visible,
.music-links a.is-hovered {
    border-color: var(--button-hover-border);
    background-color: var(--button-hover-bg);
    color: var(--ink);
}

@keyframes reference-marquee {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

.person-media {
    margin: 0;
    position: relative;
    display: grid;
    place-items: center;
    align-self: center;
}

.person-media img {
    position: relative;
    z-index: 1;
    display: block;
    width: min(100%, 410px);
    aspect-ratio: 1 / 1;
    height: auto;
    min-height: 0;
    object-fit: cover;
    object-position: center 20%;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.text-link {
    font-weight: var(--caption-weight);
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.stars {
    color: var(--accent);
    font-size: var(--caption);
    letter-spacing: var(--caption-letter-spacing);
}

.inquiry-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(18px, 2.4vw, 26px);
    align-items: start;
    padding: clamp(26px, 3.8vw, 46px);
}

.inquiry-copy {
    align-self: auto;
    max-width: 760px;
}

.inquiry-copy p:not(.section-kicker) {
    margin: 0;
    color: var(--muted);
    font-size: var(--body-large);
    font-weight: var(--body-large-weight);
    line-height: var(--body-large-line);
}

.inquiry-stage,
.inquiry-form,
.form-grid {
    display: grid;
    gap: 14px;
    min-width: 0;
}

.inquiry-stage {
    grid-template-areas: "stage";
    grid-template-columns: minmax(0, 1fr);
}

.inquiry-stage > .inquiry-form,
.inquiry-stage > .inquiry-thanks {
    grid-area: stage;
}

.inquiry-stage > [hidden],
.inquiry-form[hidden],
.inquiry-thanks[hidden] {
    display: none !important;
}

.inquiry-form {
    width: 100%;
    max-width: 100%;
    transition: opacity .28s ease, transform .28s ease;
}

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

.inquiry-fields {
    grid-template-columns: minmax(240px, .62fr) minmax(320px, 1fr);
    align-items: stretch;
}

.inquiry-fields__left {
    display: grid;
    gap: 14px;
    min-width: 0;
}

.inquiry-form input,
.inquiry-form textarea {
    min-height: var(--button-min-height);
    padding-top: 11px;
    padding-bottom: 11px;
}

label,
legend {
    color: var(--muted);
    font-size: var(--caption);
    font-weight: var(--caption-weight);
    letter-spacing: var(--body-letter-spacing);
    text-transform: none;
}

input,
select,
textarea {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    margin-top: 8px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #FFFFFF;
    color: var(--ink);
    font: var(--body-weight) var(--body) / var(--body-line) var(--sans);
    padding: 13px 15px;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.inquiry-form input,
.inquiry-form textarea {
    margin-top: 0;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: #FFFFFF;
    box-shadow: var(--shadow);
}

textarea {
    min-height: 120px;
    resize: vertical;
}

.inquiry-message {
    min-height: calc((var(--button-min-height) * 2) + 14px);
    height: calc((var(--button-min-height) * 2) + 14px);
    resize: none;
    overflow-y: auto;
}

.service-choice {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    border: 0;
}

.service-choice legend {
    flex-basis: 100%;
}

.service-choice label,
.consent {
    display: inline-flex;
    align-items: flex-start;
    gap: 8px;
    min-height: 40px;
    border: 1px solid var(--line);
    border-radius: var(--button-radius);
    padding: 10px 12px;
    background: #FFFFFF;
    font-size: var(--caption);
    font-weight: var(--caption-weight);
    line-height: var(--caption-line);
}

.consent {
    gap: 12px;
    min-height: 54px;
    padding: 14px 16px;
    font-size: var(--body);
    font-weight: var(--body-weight);
    line-height: var(--body-line);
}

.service-choice input,
.consent input {
    width: auto;
    min-height: 0;
    margin: 0;
}

.consent input {
    width: 20px;
    height: 20px;
    margin-top: 1px;
    flex: 0 0 auto;
}

.consent__body {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.consent__body a {
    width: max-content;
    max-width: 100%;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.inquiry-submit {
    justify-self: center;
    width: min(100%, 380px);
}

.inquiry-status {
    justify-self: center;
    max-width: 620px;
    margin: 0;
    color: var(--muted);
    font-size: var(--caption);
    font-weight: var(--caption-weight);
    line-height: var(--caption-line);
    text-align: center;
}

.inquiry-section.is-fading .inquiry-form {
    opacity: 0;
    transform: translateY(-4px);
}

.inquiry-section.is-sent {
    gap: clamp(2px, .7vw, 8px);
}

.inquiry-thanks {
    width: min(100%, 760px);
    max-width: 760px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .42s ease, transform .42s ease;
}

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

.inquiry-thanks p {
    max-width: 760px;
    margin: 0;
    color: var(--muted);
    font-size: var(--body);
    font-weight: var(--body-weight);
    line-height: var(--body-line);
}

.inquiry-thanks p + p {
    margin-top: 8px;
}

.inquiry-thanks__note {
    margin-top: 8px !important;
    font-size: var(--body) !important;
    font-weight: var(--body-weight) !important;
    line-height: var(--body-line) !important;
}

.hp-field {
    position: absolute;
    left: -10000px;
}

.result-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: clamp(22px, 5vw, 52px);
    background:
        radial-gradient(circle at 50% 0%, rgba(154, 143, 134, .12), transparent 34%),
        var(--bg);
}

.result-card {
    width: min(760px, 100%);
    padding: clamp(34px, 6vw, 74px);
    background: var(--paper);
    border-radius: 12px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    text-align: center;
}

.result-logo {
    width: clamp(142px, 20vw, 210px);
    max-width: 72%;
    opacity: .72;
    margin: 0 auto clamp(28px, 5vw, 42px);
}

.result-card h1 {
    margin: 0 auto;
    max-width: 620px;
}

.result-copy {
    max-width: 560px;
    margin: 18px auto 0;
    color: var(--muted);
    font-size: var(--body-large);
    font-weight: var(--body-large-weight);
    line-height: var(--body-large-line);
}

.result-note {
    max-width: 560px;
    margin: 18px auto 0;
    color: var(--muted);
    font-size: var(--caption);
    font-weight: var(--caption-weight);
    line-height: var(--caption-line);
}

.result-reference {
    display: inline-flex;
    margin: 22px auto 0;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--muted);
    font-size: var(--caption);
    font-weight: var(--caption-weight);
}

.result-actions {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.result-errors {
    display: grid;
    gap: 8px;
    max-width: 520px;
    margin: 22px auto 0;
    padding: 0;
    list-style: none;
    color: var(--muted);
    text-align: left;
}

.result-errors li {
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
}

.site-footer {
    width: min(1320px, calc(100vw - 40px));
    margin: clamp(34px, 6vw, 72px) auto 0;
    padding: clamp(34px, 5vw, 64px) 0 clamp(42px, 6vw, 76px);
    border-top: 1px solid var(--line);
    display: grid;
    align-items: center;
    justify-items: center;
    gap: clamp(18px, 2.6vw, 28px);
    text-align: center;
}

.footer-brand {
    display: flex;
    justify-content: center;
}

.footer-brand img {
    width: clamp(132px, 14vw, 178px);
    max-width: 46vw;
    display: block;
    opacity: .82;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px 28px;
    flex-wrap: wrap;
}

.footer-links a:not(.button) {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--muted);
    font-size: var(--meta-size);
    font-weight: var(--meta-weight);
    letter-spacing: var(--meta-letter-spacing);
    text-decoration: none;
    text-transform: uppercase;
}

.footer-links a:not(.button)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    height: 1px;
    background: currentColor;
    opacity: .72;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .22s ease;
}

.footer-links a:not(.button) + a:not(.button)::before {
    content: "·";
    position: absolute;
    left: -13px;
    color: var(--line);
    font-weight: var(--caption-regular-weight);
}

.footer-links a:not(.button):hover,
.footer-links a:not(.button):focus-visible,
.footer-links a:not(.button).is-hovered {
    color: var(--ink);
}

.footer-links a:not(.button):hover::after,
.footer-links a:not(.button):focus-visible::after,
.footer-links a:not(.button).is-hovered::after {
    transform: scaleX(1);
}

.site-footer p {
    margin: 0;
}

.footer-copy {
    color: var(--muted);
    font-size: var(--caption-small);
    font-weight: var(--caption-regular-weight);
}

.service-page {
    padding-top: 0;
}

.service-page main {
    position: relative;
}

.service-breadcrumb {
    width: min(1320px, calc(100vw - 40px));
    position: absolute;
    z-index: 4;
    top: clamp(16px, 2.2vw, 30px);
    left: 50%;
    margin: 0;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, .78);
    font-size: var(--caption-small);
    line-height: var(--caption-line);
}

.service-breadcrumb a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.service-hero,
.service-section {
    width: min(1320px, calc(100vw - 40px));
    margin: clamp(30px, 5vw, 58px) auto;
}

.service-hero {
    position: relative;
    isolation: isolate;
    width: 100%;
    min-height: clamp(560px, 72vh, 820px);
    margin: 0 auto clamp(44px, 6.5vw, 86px);
    display: grid;
    align-items: end;
    padding: clamp(90px, 12vw, 150px) max(20px, calc((100vw - 1320px) / 2)) clamp(52px, 8vw, 96px);
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: #141413;
    box-shadow: none;
}

.service-hero__copy {
    position: relative;
    z-index: 2;
    width: min(760px, calc(100vw - 40px));
    display: grid;
    gap: clamp(12px, 1.8vw, 18px);
    justify-items: start;
    min-width: 0;
    color: #FFFFFF;
}

.service-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.service-hero .service-actions .button {
    border-color: rgba(255, 255, 255, .92);
    background: #FFFFFF;
    color: var(--ink);
}

.service-hero .service-actions .button--ghost {
    border-color: rgba(255, 255, 255, .72);
    background: rgba(255, 255, 255, .08);
    color: #FFFFFF;
    backdrop-filter: blur(12px);
}

.service-hero .service-actions .button:hover,
.service-hero .service-actions .button:focus-visible,
.service-hero .service-actions .button.is-hovered {
    border-color: #FFFFFF;
    background: rgba(255, 255, 255, .86);
    color: var(--ink);
}

.service-hero .service-actions .button--ghost:hover,
.service-hero .service-actions .button--ghost:focus-visible,
.service-hero .service-actions .button--ghost.is-hovered {
    border-color: #FFFFFF;
    background: rgba(255, 255, 255, .18);
    color: #FFFFFF;
}

.service-hero__copy h1,
.service-placeholder h2,
.service-copy--editorial h2,
.service-section-head h2,
.service-feature-card h3,
.service-timeline h3 {
    margin: 0;
    font-family: var(--serif);
    font-weight: var(--heading-xl-weight);
    letter-spacing: 0;
    line-height: var(--heading-line);
}

.service-hero__copy h1 {
    font-size: var(--display);
    font-weight: var(--display-weight);
    line-height: var(--display-line);
}

.service-hero__copy p:not(.section-kicker),
.service-hero__seo,
.service-copy,
.service-placeholder p,
.service-feature-card p,
.service-timeline p,
.service-section-head p,
.service-faq-item p {
    color: var(--muted);
    font-size: var(--body-large);
    font-weight: var(--body-large-weight);
    line-height: var(--body-large-line);
}

.service-hero__copy p:not(.section-kicker) {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, .86);
    overflow-wrap: anywhere;
}

.service-hero__seo {
    color: rgba(255, 255, 255, .95) !important;
    font-size: var(--meta-size) !important;
    font-weight: var(--meta-weight) !important;
    letter-spacing: var(--meta-letter-spacing);
    line-height: var(--caption-line) !important;
    text-transform: uppercase;
}

.service-hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
    margin: 0;
    min-width: 0;
}

.service-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(20, 20, 19, .78) 0%, rgba(20, 20, 19, .52) 42%, rgba(20, 20, 19, .22) 72%, rgba(20, 20, 19, .58) 100%),
        linear-gradient(180deg, rgba(20, 20, 19, .25) 0%, rgba(20, 20, 19, .08) 42%, rgba(20, 20, 19, .72) 100%);
    pointer-events: none;
}

.service-hero__media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    border-radius: 0;
    animation: serviceHeroKenBurns 32s ease-in-out infinite alternate;
}

.service-hero--editorial {
    min-height: clamp(560px, 72vh, 820px);
}

.service-hero--editorial .service-hero__media img {
    aspect-ratio: auto;
}

.service-hero--editorial .service-hero__copy {
    gap: clamp(14px, 2vw, 20px);
}

@keyframes serviceHeroKenBurns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.06);
    }
}

.service-section {
    display: grid;
    gap: 18px;
    min-width: 0;
}

.service-section > .section-kicker + .service-section-head {
    margin-top: -18px;
}

.service-copy {
    max-width: 820px;
}

.service-copy p {
    margin: 0;
}

.service-copy p + p {
    margin-top: 12px;
}

.service-copy--editorial {
    max-width: 920px;
}

.service-copy--editorial h2,
.service-section-head h2 {
    font-size: var(--heading-xl);
}

.service-copy--editorial p {
    max-width: 780px;
}

.service-copy--editorial h2 + p {
    margin-top: clamp(18px, 3vw, 26px);
}

.service-section-head {
    display: grid;
    gap: 12px;
    max-width: 820px;
}

.service-section-head p {
    margin: 0;
}

.service-placeholder-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.service-placeholder,
.service-media-placeholder {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--paper);
    box-shadow: var(--shadow);
}

.service-placeholder {
    padding: clamp(22px, 3vw, 34px);
    min-width: 0;
}

.service-placeholder h2 {
    font-size: var(--heading-card);
}

.service-placeholder p {
    margin: 12px 0 0;
    overflow-wrap: anywhere;
}

.service-media-placeholder {
    min-height: clamp(220px, 30vw, 360px);
    display: grid;
    place-items: center;
    color: var(--muted);
    font-size: var(--caption);
    font-weight: var(--caption-weight);
    letter-spacing: var(--caption-letter-spacing);
    text-transform: uppercase;
    text-align: center;
    padding: 24px;
}

.service-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.service-feature-card {
    min-width: 0;
    display: grid;
    align-content: start;
    gap: 14px;
    padding: clamp(22px, 3vw, 34px);
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--paper);
    box-shadow: var(--shadow);
}

.service-feature-card span,
.service-timeline > li > span {
    color: var(--muted);
    font-size: var(--caption-small);
    font-weight: var(--caption-weight);
    letter-spacing: var(--caption-letter-spacing);
    line-height: var(--caption-line);
}

.service-feature-card h3 {
    font-size: var(--heading-card);
}

.service-feature-card p {
    margin: 0;
    font-size: var(--body);
    line-height: var(--body-line);
}

.service-timeline {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin: 10px 0 0;
    padding: 0;
}

.service-timeline li {
    min-width: 0;
    display: grid;
    gap: 18px;
    align-content: start;
    padding: clamp(20px, 2.6vw, 30px);
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--paper);
    box-shadow: var(--shadow);
}

.service-timeline h3 {
    font-size: clamp(1.6rem, 1.7vw, 2.2rem);
}

.service-timeline p {
    margin: 8px 0 0;
    font-size: var(--body);
    line-height: var(--body-line);
}

.service-gallery {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: clamp(14px, 2vw, 22px);
    align-items: stretch;
}

.service-gallery__item {
    grid-column: span 2;
    grid-row: auto;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    border-radius: 12px;
    background: var(--paper);
    box-shadow: var(--shadow);
}

.service-gallery__item--large {
    grid-row: auto;
}

.service-gallery__item--tall {
    grid-row: auto;
}

.service-gallery__item--wide {
    grid-column: span 2;
}

.service-gallery__item img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.service-gallery__item[data-lightbox-image] {
    cursor: zoom-in;
}

.gallery-lightbox-open {
    overflow: hidden;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: clamp(18px, 4vw, 48px);
    background: rgba(24, 22, 22, .84);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease;
}

.gallery-lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}

.gallery-lightbox img {
    display: block;
    max-width: min(1120px, 92vw);
    max-height: 86vh;
    border-radius: 10px;
    box-shadow: 0 24px 90px rgba(0, 0, 0, .38);
}

.gallery-lightbox__close {
    position: absolute;
    top: clamp(14px, 2vw, 24px);
    right: clamp(14px, 2vw, 24px);
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .62);
    border-radius: 50%;
    background: rgba(24, 22, 22, .28);
    color: #FFFFFF;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    backdrop-filter: blur(12px);
}

.service-music-card {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(280px, .45fr);
    gap: clamp(22px, 4vw, 54px);
    align-items: center;
    padding: clamp(24px, 4vw, 46px);
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--paper);
    box-shadow: var(--shadow);
}

.service-music-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.service-music-release-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(18px, 2.8vw, 34px);
    margin-top: clamp(20px, 3vw, 34px);
}

.service-music-release {
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(112px, .34fr) minmax(0, .66fr);
    gap: clamp(16px, 2.4vw, 26px);
    align-items: center;
    padding: clamp(16px, 2.4vw, 24px);
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 16px 42px rgba(43, 43, 43, .045);
}

.service-music-release img {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
}

.service-music-release__body {
    min-width: 0;
    display: grid;
    gap: 12px;
}

.service-music-release__body h3 {
    font-size: var(--heading-card);
}

.service-faq-list {
    display: grid;
    gap: 12px;
}

.service-faq-item {
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--paper);
    box-shadow: var(--shadow);
}

.service-faq-item h3 {
    margin: 0;
}

.service-faq-item button {
    width: 100%;
    cursor: pointer;
    border: 0;
    background: transparent;
    text-align: left;
}

.service-faq-item button {
    cursor: pointer;
    padding: 20px clamp(20px, 3vw, 30px);
    color: var(--ink);
    font-size: var(--body-large);
    font-weight: var(--body-large-weight);
    line-height: var(--body-large-line);
}

.service-faq-item button::after {
    content: "+";
    float: right;
    margin-left: 18px;
    color: var(--muted);
}

.service-faq-item button[aria-expanded="true"]::after {
    content: "-";
}

.service-faq-panel {
    display: none;
}

.service-faq-item.is-open .service-faq-panel {
    display: block;
}

.service-faq-item p {
    max-width: 900px;
    margin: 0;
    padding: 0 clamp(20px, 3vw, 30px) 22px;
}

.service-page .service-section {
    margin-top: clamp(42px, 5.4vw, 72px);
    margin-bottom: clamp(42px, 5.4vw, 72px);
}

.service-page .service-feature-card {
    padding: clamp(20px, 2.6vw, 30px);
}

.service-page .service-timeline li {
    gap: 14px;
    padding: clamp(18px, 2.4vw, 26px);
}

.service-page .service-music-card {
    grid-template-columns: minmax(0, .72fr) minmax(260px, .38fr);
    gap: clamp(16px, 2.6vw, 34px);
    padding: clamp(22px, 3vw, 36px);
}

.service-page .service-music-card .service-section-head {
    gap: 10px;
}

.service-page .service-music-links {
    gap: 8px;
}

.service-page .service-music-release .service-music-links {
    justify-content: flex-start;
}

.service-page {
    padding-top: 0;
}

.service-page .site-header--solid {
    position: fixed;
    background: linear-gradient(180deg, rgba(43, 43, 43, .50), rgba(43, 43, 43, 0));
    box-shadow: none;
    backdrop-filter: none;
}

.service-page .site-header--solid.site-header--scrolled {
    background: rgba(43, 43, 43, .88);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.service-page .service-hero {
    --display: clamp(2.8rem, 5.15vw, 5.8rem);
    --display-line: 1.04;
    min-height: 100vh;
    min-height: 100svh;
    padding: clamp(110px, 14vw, 180px) clamp(24px, 5.6vw, 82px) clamp(76px, 8vw, 118px);
    border: 0;
    border-radius: 0;
    background: var(--ink);
    box-shadow: none;
}

.service-page .service-hero::after {
    background:
        linear-gradient(90deg, rgba(24, 22, 22, .66) 0%, rgba(24, 22, 22, .43) 46%, rgba(24, 22, 22, .16) 100%),
        linear-gradient(180deg, rgba(24, 22, 22, .12) 0%, rgba(24, 22, 22, .04) 42%, rgba(24, 22, 22, .64) 100%);
}

.service-page .service-hero__copy {
    width: min(920px, 68vw);
    max-width: min(920px, 68vw);
}

.service-page .service-hero__copy .service-hero__seo {
    margin-top: clamp(18px, 2.4vw, 26px);
}

.service-page .service-hero__copy p:not(.service-hero__seo) {
    display: none;
}

.service-page .service-actions {
    display: none;
}

.service-hero__slider {
    overflow: hidden;
    background-color: var(--ink);
    background-position: var(--service-slide-position, center center);
    background-size: cover;
}

.service-hero__slider img {
    position: absolute;
    inset: -3%;
    width: 106%;
    height: 106%;
    max-width: none;
    opacity: 0;
    object-fit: cover;
    object-position: var(--service-slide-position, center center);
    transform: scale(1.04) translate3d(-.8%, -.4%, 0);
    transform-origin: center center;
    animation-name: var(--service-slide-animation-name, var(--hero-animation-name, heroKenBurns));
    animation-duration: var(--hero-duration, 30s);
    animation-iteration-count: infinite;
    animation-delay: calc((var(--service-slide-index, 0) * var(--hero-step, 6s)) - var(--hero-duration, 30s));
    animation-timing-function: linear;
    animation-direction: normal;
    animation-fill-mode: both;
    will-change: opacity, transform;
}

.service-page .service-hero__media img {
    aspect-ratio: auto;
    border-radius: 0;
    object-position: var(--service-slide-position, 58% center);
}

.service-why-section {
    grid-template-columns: minmax(0, 1fr) minmax(260px, .54fr);
    gap: clamp(22px, 3.4vw, 44px);
    align-items: stretch;
    padding: clamp(24px, 3.8vw, 42px);
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--paper);
    box-shadow: var(--shadow);
    margin-top: clamp(46px, 6vw, 76px);
    margin-bottom: clamp(42px, 5.4vw, 68px);
}

.service-why__copy {
    align-self: center;
    max-width: none;
    gap: 0;
}

.service-why__copy .service-eyebrow {
    margin: 0 0 var(--eyebrow-gap);
    color: var(--eyebrow-color);
    font-size: var(--eyebrow);
    font-weight: var(--eyebrow-weight);
    letter-spacing: var(--eyebrow-letter-spacing);
    line-height: var(--caption-line);
    text-transform: uppercase;
}

.service-why__copy h2 {
    max-width: 860px;
    margin-bottom: var(--chapter-text-gap);
    color: var(--ink);
    font-size: var(--heading-xl);
    line-height: var(--heading-line);
}

.service-why__copy p {
    max-width: 840px;
    margin: 10px 0 0;
    color: var(--muted);
    font-size: var(--body-large);
    font-weight: var(--body-large-weight);
    line-height: var(--body-large-line);
}

.service-why__media {
    min-width: 0;
    margin: 0;
    position: relative;
    display: grid;
    place-items: center;
    align-self: center;
}

.service-why__media img {
    position: relative;
    z-index: 1;
    display: block;
    width: min(100%, 410px);
    aspect-ratio: 1 / 1;
    height: auto;
    min-height: 0;
    object-fit: cover;
    object-position: var(--service-intro-image-position, 50% center);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.service-page .service-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(22px, 4vw, 54px);
}

.service-page .service-feature-grid--media {
    align-items: stretch;
    gap: clamp(22px, 3.4vw, 42px);
}

.service-page .service-feature-card {
    padding: clamp(18px, 2.6vw, 30px) 0 0;
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.service-page .service-feature-card--media {
    overflow: hidden;
    gap: 0;
    padding: 0;
    border: 1px solid rgba(150, 140, 130, .22);
    border-radius: 12px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 18px 52px rgba(43, 43, 43, .055);
}

.service-page .service-feature-card span {
    display: none;
}

.service-feature-card__media {
    margin: 0;
}

.service-feature-card__media img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center;
}

.service-feature-card__copy {
    display: grid;
    gap: 12px;
}

.service-page .service-feature-card--media .service-feature-card__copy {
    padding: clamp(22px, 3vw, 34px);
}

.service-feature-card__subtitle {
    color: var(--muted);
    font-weight: 700;
}

.service-page .service-feature-card--media p {
    white-space: normal;
}

.service-page .service-timeline {
    --timeline-gap: clamp(28px, 4vw, 56px);
    position: relative;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--timeline-gap);
    margin-top: clamp(28px, 3.8vw, 46px);
    overflow: visible;
}

.service-page .service-timeline::before {
    content: none;
}

.service-page .service-timeline li {
    position: relative;
    z-index: 1;
    gap: clamp(12px, 1.6vw, 20px);
    padding: clamp(22px, 3vw, 34px);
    border: 1px solid rgba(150, 140, 130, .24);
    border-radius: 12px;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 18px 48px rgba(43, 43, 43, .045);
}

.service-page .service-timeline li:not(:last-child)::after {
    content: "";
    position: absolute;
    left: calc(100% + (var(--timeline-gap) / 2));
    right: auto;
    top: 50%;
    z-index: 4;
    width: clamp(18px, 1.8vw, 26px);
    height: clamp(18px, 1.8vw, 26px);
    border-right: 2px solid rgba(150, 140, 130, .56);
    border-bottom: 2px solid rgba(150, 140, 130, .56);
    transform: translate(-50%, -50%) rotate(-45deg);
    animation: djTimelineArrowPulse 3.8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes djTimelineArrowPulse {
    0%,
    100% {
        opacity: .38;
    }

    48% {
        opacity: .68;
    }
}

.service-page .service-timeline li:last-child {
    padding-bottom: clamp(22px, 3vw, 34px);
}

.service-page .service-timeline > li > span {
    display: block;
    width: auto;
    height: auto;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--muted);
    font-family: var(--serif);
    font-size: clamp(2rem, 2.7vw, 3rem);
    font-weight: 400;
    letter-spacing: 0;
    line-height: .95;
    opacity: .72;
}

.service-inline-link {
    display: inline-flex;
    width: fit-content;
    margin-top: 14px;
    color: var(--ink);
    font-size: var(--caption-small);
    font-weight: var(--caption-weight);
    letter-spacing: var(--caption-letter-spacing);
    line-height: var(--caption-line);
    text-decoration: none;
    text-transform: uppercase;
    border-bottom: 1px solid currentColor;
    text-underline-offset: 4px;
}

.service-inline-link:hover,
.service-inline-link:focus-visible {
    color: var(--muted);
}

.service-page .service-gallery-section {
    margin-top: clamp(46px, 6vw, 78px);
    margin-bottom: clamp(64px, 7vw, 96px);
    scroll-margin-top: 118px;
}

.service-award-section {
    margin-top: clamp(34px, 4.6vw, 68px);
    margin-bottom: clamp(34px, 4.8vw, 72px);
}

.service-award {
    display: grid;
    grid-template-columns: minmax(0, .34fr) minmax(0, 1fr);
    gap: clamp(18px, 3vw, 42px);
    align-items: center;
    padding: clamp(22px, 3.6vw, 40px);
    border: 1px solid var(--line);
    border-radius: 12px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(248, 245, 238, .82)),
        var(--paper);
    box-shadow: 0 18px 54px rgba(43, 43, 43, .06);
}

.service-award .service-eyebrow {
    margin: 0;
}

.service-award__content {
    display: grid;
    gap: 10px;
}

.service-award__title {
    margin: 0;
    color: var(--ink);
    font-size: .9rem;
    font-weight: 800;
    letter-spacing: .12em;
    line-height: 1.35;
    text-transform: uppercase;
}

.service-award__headline {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(2.1rem, 4.6vw, 4.7rem);
    font-weight: 300;
    letter-spacing: 0;
    line-height: .96;
}

.service-award__text {
    max-width: 760px;
    margin: 4px 0 0;
    color: var(--muted);
    font-size: var(--body-large);
    line-height: var(--body-large-line);
}

.service-award__links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    align-items: center;
    margin-top: 8px;
}

.service-page .service-closing-section {
    margin-top: clamp(46px, 6vw, 76px);
    margin-bottom: clamp(64px, 7vw, 96px);
}

.service-closing__content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, .48fr);
    gap: clamp(22px, 3.4vw, 44px);
    align-items: stretch;
    padding: clamp(24px, 3.8vw, 42px);
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--paper);
    box-shadow: var(--shadow);
}

.service-closing__copy {
    align-self: center;
    max-width: none;
}

.service-closing__copy .service-eyebrow {
    margin-bottom: 0;
}

.service-closing__copy h2 {
    max-width: 760px;
    margin: var(--eyebrow-gap) 0 var(--chapter-text-gap);
    font-family: var(--serif);
    font-size: var(--heading-xl);
    font-weight: var(--heading-xl-weight);
    letter-spacing: 0;
    line-height: var(--heading-line);
}

.service-closing__body {
    display: grid;
    gap: 10px;
    max-width: 700px;
    margin: 0;
}

.service-closing__links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 18px;
}

.service-closing__body p {
    margin: 0;
    color: var(--muted);
    font-size: var(--body-large);
    font-weight: var(--body-large-weight);
    line-height: var(--body-large-line);
}

.service-closing__media {
    min-width: 0;
    margin: 0;
    display: grid;
    place-items: center;
    align-self: center;
}

.service-closing__media img {
    display: block;
    width: min(100%, 410px);
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: cover;
    object-position: 50% 42%;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.service-page .service-gallery {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: clamp(14px, 2vw, 22px);
    align-items: stretch;
}

.service-page .service-gallery__item {
    grid-column: span 2;
    box-shadow: 0 18px 46px rgba(43, 43, 43, .055);
}

.service-page .service-gallery__item:nth-child(1) {
    grid-column: span 2;
    grid-row: auto;
}

.service-page .service-gallery__item:nth-child(2) {
    grid-column: span 2;
    grid-row: auto;
}

.service-page .service-gallery__item:nth-child(3) {
    grid-column: span 2;
    grid-row: auto;
}

.service-page .service-gallery__item:nth-child(4) {
    grid-column: span 2;
    grid-row: auto;
}

.service-page .service-gallery__item:nth-child(5) {
    grid-column: span 2;
    grid-row: auto;
}

.service-page .service-gallery__item:nth-child(4):nth-last-child(2) {
    grid-column: 2 / span 2;
}

.service-page .service-gallery__item:nth-child(5):last-child {
    grid-column: 4 / span 2;
}

.service-page .service-gallery__item:nth-last-child(2):nth-child(3n + 1) {
    grid-column: 2 / span 2;
}

.service-page .service-gallery__item:last-child:nth-child(3n + 2) {
    grid-column: 4 / span 2;
}

.service-gallery__item--video {
    position: relative;
}

.service-gallery__item--video::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(24, 22, 22, .06), rgba(24, 22, 22, .28));
    pointer-events: none;
}

.service-gallery__play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    width: clamp(46px, 5.6vw, 66px);
    height: clamp(46px, 5.6vw, 66px);
    border: 1px solid rgba(255, 255, 255, .78);
    border-radius: 50%;
    background: rgba(24, 22, 22, .22);
    transform: translate(-50%, -50%);
    backdrop-filter: blur(10px);
}

.service-gallery__play::before {
    content: "";
    position: absolute;
    left: 52%;
    top: 50%;
    width: 0;
    height: 0;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 14px solid rgba(255, 255, 255, .9);
    transform: translate(-42%, -50%);
}

.service-page .service-gallery__item img {
    transition: transform .7s cubic-bezier(.22, 1, .36, 1), filter .7s cubic-bezier(.22, 1, .36, 1);
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.service-page .service-gallery__item:nth-child(1) img {
    object-position: 52% 44%;
}

.service-page .service-gallery__item:nth-child(2) img {
    object-position: 48% 34%;
}

.service-page .service-gallery__item:nth-child(3) img {
    object-position: 38% 54%;
}

.service-page .service-gallery__item:nth-child(4) img {
    object-position: 50% 38%;
}

.service-page .service-gallery__item:nth-child(5) img {
    object-position: 50% 44%;
}

.service-page .service-gallery__item:nth-child(6) img {
    object-position: 50% 46%;
}

.service-page .service-gallery__item:nth-child(7) img {
    object-position: 48% 46%;
}

.service-page .service-gallery__item:nth-child(8) img {
    object-position: 45% 48%;
}

@media (hover: hover) and (pointer: fine) {
    .service-page .service-gallery__item:hover img,
    .service-page .service-gallery__item:focus-within img {
        transform: scale(1.035);
        filter: brightness(1.04) contrast(1.02);
    }
}

@media (max-width: 900px) {
    .service-page {
        padding-top: 0;
    }

    .service-page .site-header {
        align-items: center;
    }

    .service-page .nav-toggle {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

    .service-page .menu-toggle {
        display: inline-flex;
    }

    .service-page .site-nav {
        position: absolute;
        top: calc(100% + 8px);
        left: auto;
        right: 18px;
        width: fit-content;
        min-width: 168px;
        max-width: calc(100vw - 36px);
        display: grid;
        gap: 0;
        padding: 10px 12px;
        border: 1px solid var(--line);
        border-radius: 14px;
        background: var(--ink);
        box-shadow: var(--shadow);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity .22s ease, transform .22s ease;
        backdrop-filter: blur(18px);
    }

    .service-page .nav-toggle:checked ~ .site-nav {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .service-page .site-nav a,
    .service-page .site-nav a[href$="#anfrage"] {
        min-height: 36px;
        justify-content: flex-start;
        width: auto;
        min-width: 144px;
        padding: 7px 6px;
        white-space: nowrap;
        border: 0;
        border-radius: 0;
        border-bottom: 1px solid var(--line);
        background: transparent;
    }

    .service-page .site-nav a:last-child {
        border-bottom: 0;
    }

    .service-page .site-nav .nav-item {
        display: grid;
        width: 100%;
    }

    .service-page .site-nav .nav-dropdown {
        position: static;
        min-width: 0;
        padding: 0 0 4px 12px;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        backdrop-filter: none;
    }

    .service-page .site-nav .nav-dropdown a {
        min-height: 30px;
        min-width: 0;
        padding: 6px 6px 6px 12px;
        border-bottom: 0;
        color: rgba(255, 255, 255, .64);
        font-size: calc(var(--caption-xs) * .96);
    }

    .service-page .site-nav .nav-dropdown a.is-active {
        color: #FFFFFF;
    }

    .service-hero {
        grid-template-columns: 1fr;
        min-height: clamp(560px, 72vh, 720px);
        padding: clamp(92px, 18vw, 132px) 20px clamp(42px, 10vw, 72px);
    }

    .service-hero--editorial {
        min-height: 0;
    }

    .service-hero__media {
        order: initial;
    }

    .service-placeholder-grid,
    .service-feature-grid {
        grid-template-columns: 1fr;
    }

    .service-timeline {
        grid-template-columns: 1fr;
    }

    .service-gallery {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .service-music-card {
        grid-template-columns: 1fr;
    }

    .service-music-links {
        justify-content: flex-start;
    }

    .service-page {
    padding-top: 0;
}

    .service-page .service-hero {
        grid-template-columns: 1fr;
        min-height: 100vh;
        min-height: 100svh;
        padding: clamp(110px, 18vw, 150px) 20px clamp(58px, 10vw, 82px);
    }

    .service-page .service-hero__copy {
        width: min(680px, calc(100vw - 40px));
        max-width: min(680px, calc(100vw - 40px));
    }

    .service-why-section {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .service-closing__content {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .service-why__media img {
        width: 100%;
        aspect-ratio: 16 / 11;
        object-position: var(--service-intro-image-tablet-position, var(--service-intro-image-position, 50% center));
    }

    .service-closing__media img {
        width: 100%;
        aspect-ratio: 16 / 11;
    }

    .service-page .service-feature-grid {
        grid-template-columns: 1fr;
    }

    .service-page .service-section {
        margin-top: 42px;
        margin-bottom: 42px;
    }

    .service-page .service-feature-card {
        gap: 12px;
        padding: 20px;
    }

    .service-page .service-feature-card--media {
        padding: 0;
    }

    .service-page .service-timeline {
        --timeline-gap: 42px;
        grid-template-columns: 1fr;
        gap: var(--timeline-gap);
        padding-left: 0;
    }

    .service-page .service-timeline::before {
        content: none;
    }

    .service-page .service-timeline li {
        gap: 14px;
        padding: 22px;
    }

    .service-page .service-timeline li:not(:last-child)::after {
        left: 50%;
        right: auto;
        top: calc(100% + (var(--timeline-gap) / 2));
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .service-page .service-music-card {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 640px) {
    .service-page {
        padding-top: 0;
    }

    .service-breadcrumb,
    .service-section {
        width: calc(100vw - 24px);
    }

    .service-breadcrumb {
        top: 14px;
    }

    .service-hero {
        width: 100%;
        min-height: min(680px, calc(100svh - 0px));
        padding: clamp(102px, 25vw, 132px) 12px clamp(36px, 10vw, 54px);
    }

    .service-hero__media img {
        aspect-ratio: auto;
    }

    .service-actions {
        width: 100%;
    }

    .service-actions .button,
    .service-actions .button--ghost {
        width: 100%;
        justify-content: center;
    }

    .service-copy--editorial h2,
    .service-section-head h2 {
        max-width: 100%;
        font-size: clamp(2rem, 9vw, 2.65rem);
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .service-copy,
    .service-copy--editorial,
    .service-section-head {
        max-width: 100%;
        min-width: 0;
    }

    .service-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: auto;
        gap: 12px;
    }

    .service-page .service-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: auto;
        gap: 12px;
    }

    .service-gallery__item,
    .service-gallery__item--large,
    .service-gallery__item--tall,
    .service-gallery__item--wide {
        grid-column: auto;
        grid-row: auto;
    }

    .service-gallery__item img {
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .service-page .service-gallery__item img {
        height: auto;
        aspect-ratio: 1 / 1;
        object-fit: cover;
    }

    .service-music-links {
        display: grid;
        grid-template-columns: 1fr;
    }

    .service-page {
    padding-top: 0;
}

    .service-page .service-section {
        margin-top: 38px;
        margin-bottom: 38px;
    }

    .service-page .service-hero {
        margin-top: 0;
        --display: clamp(2.18rem, 10vw, 2.65rem);
        --display-line: 1.06;
        min-height: 100vh;
        min-height: 100svh;
        padding: clamp(108px, 26vw, 138px) 18px 76px;
    }

    .service-page .service-hero__copy {
        width: 100%;
        max-width: min(100%, 360px);
    }

    .service-page .service-hero__media img {
        aspect-ratio: auto;
        object-position: var(--service-slide-mobile-position, var(--service-slide-position, 57% center));
    }

    .service-hero__slider img {
        object-position: var(--service-slide-mobile-position, var(--service-slide-position, center center));
        animation-name: var(--service-slide-animation-name, var(--hero-mobile-animation-name, heroKenBurnsMobile));
        animation-duration: var(--hero-mobile-duration, 36s);
        animation-delay: calc((var(--service-slide-index, 0) * var(--hero-mobile-step, 7.2s)) - var(--hero-mobile-duration, 36s));
    }

    .service-page .service-copy p + p {
        margin-top: 10px;
    }

    .service-page .service-why-section .service-copy--editorial h2 {
        max-width: 12.5ch;
    }

    .service-why-section {
        width: calc(100vw - 24px);
        padding: 22px;
    }

    .service-award {
        grid-template-columns: 1fr;
        gap: 14px;
        width: calc(100vw - 24px);
        padding: 22px;
    }

    .service-award__headline {
        font-size: clamp(2rem, 12vw, 3.15rem);
    }

    .service-closing__content {
        width: calc(100vw - 24px);
        padding: 22px;
    }

    .service-page .service-feature-grid {
        gap: 24px;
    }

    .service-page .service-faq-list {
        gap: 12px;
    }

    .service-page .service-feature-card,
    .service-page .service-timeline li {
        padding: 18px;
    }

    .service-page .service-feature-card {
        padding: 18px 0 0;
    }

    .service-page .service-feature-card--media {
        padding: 0;
    }

    .service-page .service-feature-card--media .service-feature-card__copy {
        padding: 20px;
    }

    .service-page .service-timeline {
        padding-left: 0;
    }

    .service-page .service-timeline li {
        padding: 20px;
    }

    .service-why__media img {
        aspect-ratio: 4 / 3;
        object-position: var(--service-intro-image-mobile-position, var(--service-intro-image-tablet-position, var(--service-intro-image-position, 50% center)));
    }

    .service-closing__media img {
        aspect-ratio: 4 / 3;
        object-position: 50% 40%;
    }

    .service-page .service-gallery__item:nth-child(1),
    .service-page .service-gallery__item:nth-child(2),
    .service-page .service-gallery__item:nth-child(3),
    .service-page .service-gallery__item:nth-child(4),
    .service-page .service-gallery__item:nth-child(5),
    .service-page .service-gallery__item:nth-child(6),
    .service-page .service-gallery__item:nth-child(7),
    .service-page .service-gallery__item:nth-child(8) {
        grid-column: auto;
        grid-row: auto;
    }

    .service-page .service-gallery__item:nth-last-child(2):nth-child(3n + 1),
    .service-page .service-gallery__item:last-child:nth-child(3n + 2) {
        grid-column: auto;
        grid-row: auto;
    }

    .service-page .service-music-card {
        padding: 18px;
    }
}

@media (max-width: 420px) {
    .service-page .service-gallery__item img,
    .service-page .service-gallery__item:nth-child(1) img,
    .service-page .service-gallery__item:nth-child(2) img,
    .service-page .service-gallery__item:nth-child(3) img,
    .service-page .service-gallery__item:nth-child(4) img,
    .service-page .service-gallery__item:nth-child(5) img,
    .service-page .service-gallery__item:nth-child(6) img,
    .service-page .service-gallery__item:nth-child(7) img,
    .service-page .service-gallery__item:nth-child(8) img {
        aspect-ratio: 1 / 1;
    }
}

.legal-body {
    background: var(--bg);
    max-width: 100%;
}

.legal-body .site-header {
    position: fixed;
    top: 0;
    background: rgba(43, 43, 43, .94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.legal-body .site-header.site-header--scrolled {
    background: rgba(43, 43, 43, .88);
}

.legal-page {
    width: min(1120px, calc(100vw - 40px));
    margin: clamp(112px, 12vw, 148px) auto clamp(40px, 6vw, 76px);
}

.legal-page * {
    min-width: 0;
    max-width: 100%;
}

.legal-intro {
    min-width: 0;
    max-width: 760px;
    margin-bottom: 26px;
}

.legal-intro p:not(.section-kicker) {
    color: var(--muted);
    font-size: var(--body-large);
    font-weight: var(--body-large-weight);
    line-height: var(--body-large-line);
    overflow-wrap: anywhere;
    word-break: break-word;
}

.legal-grid,
.legal-layout {
    display: grid;
    gap: 18px;
    align-items: start;
}

.legal-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, .8fr);
}

.legal-layout {
    grid-template-columns: minmax(220px, .44fr) minmax(0, 1fr);
}

.legal-card {
    min-width: 0;
    display: grid;
    gap: 18px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--paper);
    box-shadow: var(--shadow);
    padding: clamp(24px, 4vw, 42px);
}

.legal-card h2 {
    font-size: var(--heading-card);
    font-weight: var(--heading-card-weight);
    line-height: var(--heading-card-line);
}

.legal-card p {
    margin: 0;
    color: var(--muted);
    font-size: var(--body);
    font-weight: var(--body-weight);
    line-height: var(--body-line);
    overflow-wrap: anywhere;
    word-break: break-word;
}

.legal-card a {
    color: var(--ink);
    font-weight: var(--caption-weight);
    text-underline-offset: 4px;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.legal-list {
    display: grid;
    gap: 12px;
}

.legal-list p {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px 16px;
    background: #FFFFFF;
}

.legal-toc {
    position: sticky;
    top: 94px;
}

.legal-toc nav {
    display: grid;
    gap: 8px;
}

.legal-toc a {
    display: block;
    border: 1px solid var(--line);
    border-radius: var(--button-radius);
    padding: 10px 12px;
    background: #FFFFFF;
    color: var(--muted);
    font-size: var(--caption);
    font-weight: var(--caption-weight);
    line-height: var(--caption-line);
    text-decoration: none;
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
    color: var(--ink);
    background: var(--bg);
}

.legal-content section {
    min-width: 0;
    display: grid;
    gap: 8px;
}

.error-page {
    min-height: calc(100vh - 320px);
    display: grid;
    align-content: center;
}

.error-card {
    max-width: 760px;
}

.legal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

@media (max-width: 980px) {
    .site-header {
        padding: 16px 20px;
        gap: 18px;
    }

    .site-nav {
        gap: 16px;
    }

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

    .review-grid {
        grid-auto-columns: calc((100% - 18px) / 2);
    }

    .review-row-arrow--prev {
        left: 4px;
    }

    .review-row-arrow--next {
        right: 4px;
    }

    .review-proof {
        width: 100%;
    }

    .review-proof-lead,
    .review-proof-note {
        white-space: normal;
    }

    .review-proof-sources {
        flex-wrap: wrap;
        overflow-x: visible;
    }

    .split-feature,
    .person-section,
    .inquiry-section {
        grid-template-columns: 1fr;
    }

    #eventportal {
        grid-template-columns: 1fr;
    }

    #eventportal > .reveal-item:first-child {
        display: contents;
    }

    #eventportal .section-kicker {
        order: 1;
    }

    .eventportal-title {
        order: 2;
    }

    .eventportal-lead {
        order: 3;
    }

    .eventportal-copy {
        order: 4;
    }

    .eventportal-benefits {
        order: 5;
    }

    .portal-access {
        order: 6;
        width: 100%;
        justify-self: stretch;
    }

    .music-grid {
        grid-template-columns: 1fr;
    }

    .music-card {
        grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
    }

    .person-media img {
        min-height: 0;
        width: min(100%, 380px);
        aspect-ratio: 1 / 1;
    }
}

@media (max-width: 1100px) {
    .review-carousel {
        overflow: hidden;
    }

    .review-row-arrow--prev {
        left: 0;
    }

    .review-row-arrow--next {
        right: 0;
    }
}

@media (max-width: 760px) {
    .site-header {
        align-items: center;
    }

    .legal-body .site-header {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .legal-body .brand {
        min-width: 0;
    }

    .legal-body .menu-toggle {
        justify-self: end;
    }

    .brand img {
        width: 156px;
        max-width: 58vw;
    }

    .nav-toggle {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 8px);
        left: auto;
        right: 18px;
        width: fit-content;
        min-width: 168px;
        max-width: calc(100vw - 36px);
        display: grid;
        gap: 0;
        padding: 10px 12px;
        border: 1px solid var(--line);
        border-radius: 14px;
        background: var(--ink);
        box-shadow: var(--shadow);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity .22s ease, transform .22s ease;
        backdrop-filter: blur(18px);
    }

    .legal-body .site-nav {
        right: 12px;
        max-width: calc(100vw - 24px);
    }

    .nav-toggle:checked ~ .site-nav {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .site-nav a,
    .site-nav a[href$="#anfrage"] {
        min-height: 36px;
        justify-content: flex-start;
        width: auto;
        min-width: 144px;
        padding: 7px 6px;
        white-space: nowrap;
        border: 0;
        border-radius: 0;
        border-bottom: 1px solid var(--line);
        background: transparent;
    }

    .site-nav a:last-child {
        border-bottom: 0;
    }

    .site-nav .nav-item {
        display: grid;
        width: 100%;
    }

    .site-nav .nav-dropdown {
        position: static;
        min-width: 0;
        padding: 0 0 4px 12px;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        backdrop-filter: none;
    }

    .site-nav .nav-dropdown a {
        min-height: 30px;
        min-width: 0;
        padding: 6px 6px 6px 12px;
        border-bottom: 0;
        color: rgba(255, 255, 255, .64);
        font-size: calc(var(--caption-xs) * .96);
    }

    .site-nav .nav-dropdown a.is-active {
        color: #FFFFFF;
    }

    .site-nav .language-switcher {
        width: 100%;
        min-width: 144px;
        height: auto;
        justify-content: stretch;
        gap: 0;
        padding: 8px 6px 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        overflow: visible;
    }

    .site-nav .language-switcher a,
    .site-nav .language-switcher a:last-child {
        width: 50%;
        min-width: 0;
        height: 28px;
        min-height: 28px;
        justify-content: center;
        padding: 0;
        border: 1px solid rgba(255, 255, 255, .18);
        border-radius: var(--button-radius);
    }

    .site-nav .language-switcher a + a {
        margin-left: 6px;
        border-left: 1px solid rgba(255, 255, 255, .18);
    }

    .site-header--solid .site-nav {
        background: var(--ink);
    }
}

@media (min-width: 641px) and (max-width: 800px) {
    html {
        scroll-padding-top: 62px;
    }

    .statement,
    .services,
    .split-feature,
    .person-section,
    .reviews-section,
    .music-section,
    .inquiry-section {
        scroll-margin-top: 0;
    }

    .services,
    .reviews-section,
    .music-section,
    .split-feature,
    .inquiry-section {
        scroll-margin-top: 24px;
    }

    .services,
    .music-section {
        scroll-margin-top: 38px;
    }

    .person-section {
        scroll-margin-top: 10px;
    }

    #eventportal {
        scroll-margin-top: 24px;
    }
}

@media (max-width: 640px) {
    :root {
        --heading-xl: clamp(1.58rem, 7vw, 2rem);
        --heading-card: clamp(1.28rem, 6.4vw, 1.65rem);
        --body: .94rem;
        --body-large: var(--body);
        --caption: .84rem;
        --caption-small: .76rem;
        --eyebrow: .58rem;
        --caption-xs: .58rem;
        --caption-letter-spacing: .1em;
    }

    html {
        scroll-padding-top: 62px;
    }

    body {
        font-size: var(--body);
    }

    .site-header {
        padding: 14px 18px;
        transition: padding .3s cubic-bezier(.22, 1, .36, 1), background-color .3s ease, box-shadow .3s ease;
    }

    .site-header--scrolled {
        padding-top: 6px;
        padding-bottom: 6px;
    }

    .site-header--scrolled .brand img {
        width: 118px;
        max-width: 43vw;
    }

    .site-header--scrolled .menu-toggle {
        width: 32px;
        height: 31px;
        gap: 3px;
    }

    .site-header--scrolled .menu-toggle span {
        width: 14px;
    }

    h2 {
        font-size: var(--heading-xl);
        overflow-wrap: break-word;
    }

    .eyebrow,
    .section-kicker,
    .portal-access__eyebrow {
        font-size: var(--eyebrow);
        letter-spacing: var(--eyebrow-letter-spacing);
        font-weight: var(--eyebrow-weight);
        overflow-wrap: anywhere;
    }

    .hero {
        --display: clamp(2.18rem, 10vw, 2.65rem);
        --display-line: 1.06;
        min-height: 100vh;
        min-height: 100svh;
        padding-inline: 18px;
        padding-bottom: 76px;
    }

    .hero-slider {
        inset: -4%;
    }

    .hero-slider img {
        transform: scale(1.06) translate3d(-1.1%, -.7%, 0);
        transform-origin: center center;
        animation-name: heroKenBurnsMobile;
        animation-duration: 36s;
    }

    .hero__inner {
        width: 100%;
        max-width: min(100%, 360px);
        min-width: 0;
    }

    .hero h1 {
        max-width: 100%;
    }

    .hero__roles {
        max-width: calc(100vw - 36px);
        margin: 18px 0 0;
        font-size: var(--caption-xs);
        letter-spacing: var(--caption-letter-spacing);
        font-weight: var(--meta-weight);
        line-height: var(--caption-line);
        overflow-wrap: anywhere;
    }

    .statement,
    .services,
    .split-feature,
    .person-section,
    .reviews-section,
    .music-section,
    .inquiry-section {
        width: calc(100vw - 24px);
        scroll-margin-top: 0;
    }

    .services,
    .reviews-section,
    .music-section,
    .split-feature,
    .inquiry-section {
        scroll-margin-top: 24px;
    }

    .services,
    .music-section {
        scroll-margin-top: 38px;
    }

    .person-section {
        scroll-margin-top: 10px;
    }

    #eventportal {
        scroll-margin-top: 24px;
    }

    .split-feature,
    .person-section,
    .inquiry-section {
        padding: clamp(20px, 5.4vw, 27px);
    }

    .statement h2,
    .statement p:not(.section-kicker),
    .statement .section-kicker,
    .section-head h2,
    .section-head .section-kicker,
    .section-head p:not(.section-kicker) {
        width: min(342px, calc(100vw - 48px));
        max-width: calc(100vw - 48px);
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    #eventportal {
        grid-template-columns: 1fr;
    }

    #eventportal > .reveal-item:first-child {
        display: contents;
    }

    #eventportal .section-kicker {
        order: 1;
    }

    .eventportal-title {
        order: 2;
    }

    .eventportal-lead {
        order: 3;
    }

    .eventportal-copy {
        order: 4;
    }

    .eventportal-benefits {
        order: 5;
        grid-template-columns: 1fr;
        gap: 10px;
        width: 100%;
        margin-top: 2px;
    }

    .portal-access {
        order: 6;
        width: 100%;
        justify-self: stretch;
        margin-top: 4px;
    }

    .eventportal-benefit {
        min-height: 0;
        padding: 12px 13px;
    }

    .portal-access__panel {
        padding: clamp(20px, 5.6vw, 26px);
    }

    .portal-access__login {
        width: 100%;
    }

    .form-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .inquiry-fields {
        grid-template-columns: minmax(0, 1fr);
    }

    .inquiry-message {
        min-height: 106px;
        height: 106px;
    }

    .inquiry-form input,
    .inquiry-form textarea {
        min-height: 44px;
        padding: 10px 13px;
    }

    .inquiry-form input,
    .inquiry-form textarea,
    .consent,
    .inquiry-submit {
        max-width: 100%;
    }

    .consent {
        align-items: flex-start;
        min-height: 0;
        padding: 12px 13px;
        font-size: var(--caption);
        line-height: var(--caption-line);
    }

    .consent input {
        width: 22px;
        height: 22px;
        min-width: 22px;
    }

    .consent__body {
        gap: 3px;
    }

    .inquiry-submit {
        width: 100%;
    }

    .services-track-panel {
        position: relative;
    }

    .services-track-panel::after {
        content: "\203A";
        position: absolute;
        top: clamp(255px, 62vw, 340px);
        right: -2px;
        z-index: 3;
        display: grid;
        place-items: center;
        width: 30px;
        height: 44px;
        color: var(--muted);
        font-family: var(--sans);
        font-size: var(--symbol-mobile);
        line-height: var(--control-line);
        opacity: .5;
        pointer-events: none;
        transform: scaleX(.82) scaleY(1.16);
        animation: reviewScrollHint 3s cubic-bezier(0.22, 1, 0.36, 1) infinite;
    }

    .content-carousel {
        display: flex;
        gap: 14px;
        width: calc(100vw - 24px);
        margin-inline: -2px;
        padding: 2px 2px 18px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-padding-inline: 2px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .content-carousel::-webkit-scrollbar {
        height: 3px;
    }

    .content-carousel::-webkit-scrollbar-track {
        background: var(--line);
    border-radius: 12px;
}

.service-page--barde-barlhow {
    --barde-gold: #b8893f;
    --barde-russet: #7f3b21;
    --barde-forest: #283728;
}

.service-page--barde-barlhow .service-hero::after {
    background:
        linear-gradient(90deg, rgba(30, 22, 15, .76) 0%, rgba(30, 22, 15, .42) 42%, rgba(30, 22, 15, .2) 100%),
        linear-gradient(0deg, rgba(13, 11, 9, .75) 0%, rgba(13, 11, 9, .2) 52%, rgba(13, 11, 9, .38) 100%);
}

.service-page--barde-barlhow .service-award {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 14px;
    border-color: rgba(184, 137, 63, .32);
    background:
        linear-gradient(135deg, rgba(255, 252, 243, .96), rgba(246, 237, 219, .86)),
        var(--paper);
}

.service-page--barde-barlhow .service-eyebrow {
    color: var(--barde-russet);
}

.service-page--barde-barlhow .service-award__content {
    max-width: 920px;
}

.service-page--barde-barlhow .service-feature-card--media {
    border-color: rgba(184, 137, 63, .24);
    background: linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(250, 245, 235, .86));
}

.service-page--barde-barlhow .service-feature-card--media:nth-child(4) .service-feature-card__media img {
    object-position: 50% 50%;
}

.service-page--barde-barlhow .service-feature-card--media:nth-child(1) .service-feature-card__media img,
.service-page--barde-barlhow .service-feature-card--media:nth-child(3) .service-feature-card__media img {
    object-position: 50% 50%;
}

.service-page--barde-barlhow .service-closing__content {
    border-color: rgba(184, 137, 63, .26);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .88), rgba(248, 239, 220, .82)),
        var(--paper);
}

    .content-carousel::-webkit-scrollbar-thumb {
        background: var(--accent);
        border-radius: 12px;
    }

    .service-grid.content-carousel {
        align-items: flex-start;
    }

    .service-card,
    .review-card {
        flex: 0 0 min(82vw, 318px);
        scroll-snap-align: start;
    }

    .review-grid {
        flex-wrap: nowrap;
        grid-auto-columns: min(82vw, 318px);
        padding-left: 2px;
        padding-right: 2px;
        scroll-padding-inline: 2px;
        scroll-snap-type: x mandatory;
    }

    .review-row-nav {
        top: 2px;
        bottom: 18px;
    }

    .review-row-arrow {
        min-width: 42px;
        min-height: 54px;
    }

    .review-row-arrow--prev {
        left: 4px;
    }

    .review-row-arrow--next {
        right: 4px;
    }

    .review-row-arrow .scroll-indicator {
        font-size: var(--symbol-mobile);
        opacity: .54;
    }

    .reviews-section .section-head {
        display: grid;
        justify-items: start;
        text-align: left;
    }

    .reviews-section .section-head h2,
    .reviews-section .section-head .section-kicker,
    .reviews-section .section-head p:not(.section-kicker) {
        margin-left: 0;
        margin-right: 0;
    }

    .reviews-section .review-proof {
        justify-items: start;
        text-align: left;
    }

    .reviews-section .review-proof-sources {
        justify-content: flex-start;
    }

    .reference-strip {
        width: calc(100vw - 24px);
        margin-top: 22px;
        margin-bottom: 42px;
    }

    .reference-marquee {
        padding: 19px 0;
        -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
        mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    }

    .reference-track {
        gap: 50px;
        animation-duration: 68s;
    }

    .reference-logo {
        min-width: 136px;
    }

    .reference-logo img {
        max-width: 170px;
        height: clamp(27px, 8vw, 34px);
    }

    .music-section {
        margin-top: 34px;
        margin-bottom: 38px;
    }

    .music-section__head {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .music-card {
        grid-template-columns: 1fr;
        gap: 13px;
        padding: clamp(12px, 3.5vw, 16px);
    }

    .music-card img {
        width: min(100%, 330px);
        justify-self: center;
        object-fit: contain;
        background: #F6F3EE;
    }

    .music-card__body {
        padding: 0;
        text-align: left;
    }

    .music-card h3 {
        font-size: var(--heading-card);
    }

    .music-links {
        gap: 7px;
        padding-top: 4px;
    }

    .music-links a {
        --button-control-min-height: 35px;
        --button-control-padding: 8px 10px;
        flex: 1 1 calc(50% - 8px);
        min-width: min(100%, 132px);
    }

    .service-card > div,
    .review-card div {
        padding: 17px;
    }

    .service-card__more {
        padding-top: 12px;
    }

    .service-card img {
        aspect-ratio: 5 / 4;
    }

    .has-reveal .reveal-section,
    .has-reveal .reveal-item {
        transform: translate3d(0, 14px, 0);
        transition-duration: 1500ms;
        transition-delay: min(var(--reveal-delay, 0ms), 260ms);
    }

    .site-footer {
        width: calc(100vw - 24px);
        padding-top: 30px;
        padding-bottom: 46px;
        gap: 14px;
    }

    .footer-links {
        gap: 9px 18px;
        line-height: var(--caption-line);
    }

    .footer-links a:not(.button) {
        color: var(--accent-dark);
        font-size: .64rem;
        line-height: 1.35;
        opacity: .9;
    }

    .footer-brand img {
        max-width: 58vw;
        opacity: .9;
    }

    .legal-page {
        width: 100%;
        max-width: 100%;
        margin-top: 96px;
        margin-left: auto;
        margin-right: auto;
        padding-inline: 12px;
        overflow: hidden;
    }

    .legal-body .site-header,
    .legal-body .site-footer {
        width: 100%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .legal-body .legal-intro p,
    .legal-body .legal-card p,
    .legal-body .legal-card a {
        word-break: break-all;
    }

    .legal-intro h1 {
        font-size: var(--display);
    }

    .legal-grid,
    .legal-layout {
        grid-template-columns: 1fr;
    }

    .legal-card {
        padding: 24px;
    }

    .legal-actions {
        display: grid;
    }

    .legal-actions .button {
        width: 100%;
    }

    .legal-toc {
        position: static;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reference-track {
        width: auto;
        flex-wrap: wrap;
        justify-content: center;
        animation: none;
    }

    .has-reveal .reveal-section,
    .has-reveal .reveal-item {
        opacity: 1;
        transform: none;
        transition: none;
        will-change: auto;
    }
}

@media (max-width: 480px) {
    .site-nav {
        right: 12px;
        max-width: calc(100vw - 24px);
    }

    .person-copy p:not(.section-kicker),
    .person-copy .statement-copy,
    .eventportal-lead,
    .eventportal-copy,
    .portal-access__text,
    .inquiry-copy p:not(.section-kicker) {
        overflow-wrap: break-word;
    }

    .service-card,
    .review-card {
        flex-basis: min(86vw, 318px);
    }

    .review-grid {
        grid-auto-columns: min(86vw, 318px);
        padding-left: 2px;
        padding-right: 2px;
        scroll-padding-inline: 2px;
    }

    .reference-logo {
        min-width: 128px;
    }

    .reference-logo img {
        max-width: 158px;
    }

    .legal-page,
    .legal-body .site-header,
    .legal-body .site-footer {
        width: min(100%, 390px);
        max-width: 390px;
    }
}

@media (max-width: 360px) {
    .split-feature,
    .person-section,
    .inquiry-section {
        width: calc(100vw - 20px);
        padding-inline: 18px;
    }

    .services,
    .reviews-section,
    .music-section,
    .reference-strip,
    .site-footer {
        width: calc(100vw - 20px);
    }

    .portal-mockup__top {
        display: grid;
        justify-items: start;
    }

    .portal-mockup__top span {
        max-width: 100%;
        text-align: left;
    }

    .music-links a {
        flex-basis: 100%;
    }

    .footer-links a:not(.button) + a:not(.button)::before {
        content: none;
    }
}

@media (max-width: 340px) {
    .review-proof-sources p {
        justify-content: center;
        white-space: normal;
    }

    .inquiry-form input:not([type="hidden"]):not([type="checkbox"]),
    .inquiry-form textarea,
    .consent,
    .inquiry-submit {
        width: calc(100vw - 58px);
    }
}

.service-page--barde-barlhow .service-award {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 14px;
}

.service-page--barde-barlhow .service-award__content {
    max-width: 920px;
}

.service-page--schauspiel-musical .service-award {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 14px;
}

.service-page--schauspiel-musical .service-award__content {
    max-width: 920px;
}

.service-page--schauspiel-musical .service-award__links {
    margin-top: 12px;
}

.service-page--moderation .service-feature-grid--media > .service-feature-card--media:nth-of-type(1) .service-feature-card__media img {
    object-position: 50% 34% !important;
}

.service-page--moderation .service-feature-grid--media > .service-feature-card--media:nth-of-type(2) .service-feature-card__media img {
    object-position: 48% 18% !important;
}

.service-page--moderation .service-feature-grid--media > .service-feature-card--media:nth-of-type(4) .service-feature-card__media img {
    object-position: 50% 20% !important;
}

@media (max-width: 700px) {
    .service-page--moderation .service-feature-grid--media > .service-feature-card--media:nth-of-type(1) .service-feature-card__media img {
        object-position: 50% 30% !important;
    }

    .service-page--moderation .service-feature-grid--media > .service-feature-card--media:nth-of-type(2) .service-feature-card__media img {
        object-position: 48% 14% !important;
    }

    .service-page--moderation .service-feature-grid--media > .service-feature-card--media:nth-of-type(4) .service-feature-card__media img {
        object-position: 50% 16% !important;
    }
}
