@font-face {
    font-family: "Clash Display";
    src: url("assets/fonts/ClashDisplay-Variable.woff2") format("woff2");
    font-weight: 200 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("assets/fonts/InterVariable.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --color-cream: #F7F6F3;
    --color-black: #18181B;
    --color-dark: #262626;
    --color-white: #FFFFFF;

    --gradient-sunset: linear-gradient(
        135deg,
        #1E3A8A 0%,
        #7C3AED 35%,
        #D946EF 65%,
        #F97316 100%
    );

    --font-heading: "Clash Display", Arial, sans-serif;
    --font-body: "Inter", Arial, sans-serif;

    --container: 1180px;
    --section-padding: clamp(104px, 9vw, 136px);
    --radius-button: 12px;
    --hero-logo-progress: 0;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    background: var(--color-cream);
    color: var(--color-black);
    font-weight: 400;
    line-height: 1.6;
    font-synthesis: none;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

.hero__logo,
.header-logo img,
.about__image-wrap img,
.visuals__image {
    -webkit-user-drag: none;
    user-select: none;
    -webkit-user-select: none;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    padding: 10px 14px;
    background: var(--color-black);
    color: var(--color-white);
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 86px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 40px;
    color: var(--color-white);
}

.menu-toggle {
    width: 46px;
    height: 46px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 7px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(24, 24, 27, 0.62);
    color: var(--color-white);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    cursor: pointer;
}

.menu-toggle__line {
    width: 22px;
    height: 2px;
    background: currentColor;
    display: block;
    transition: transform 0.25s ease;
}

.header-logo {
    width: 108px;
    justify-self: center;
    opacity: 0;
    pointer-events: none;
    padding: 4px 6px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 2px;
    background: rgba(24, 24, 27, 0.48);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transform: translateY(-8px) scale(0.94);
    transition:
        opacity 0.38s ease,
        transform 0.38s ease,
        background 0.38s ease;
}

.header-logo img {
    width: 100%;
    height: auto;
    display: block;
}

body.has-scrolled .header-logo {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.language-switcher {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 13px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(24, 24, 27, 0.62);
    color: var(--color-white);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.language-switcher__link {
    opacity: 0.55;
}

.language-switcher__link.is-active {
    opacity: 1;
}

.fullscreen-menu {
    position: fixed;
    inset: 0;
    z-index: 90;
    background:
        radial-gradient(circle at 78% 20%, rgba(249, 115, 22, 0.10), transparent 28%),
        radial-gradient(circle at 18% 78%, rgba(30, 58, 138, 0.10), transparent 32%),
        linear-gradient(180deg, #18181B 0%, #121214 100%);
    color: var(--color-white);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
        opacity 0.45s ease,
        visibility 0.45s ease,
        transform 0.45s ease;
}

body.menu-is-open .fullscreen-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

body.menu-is-open {
    overflow: hidden;
}

body.menu-is-open .menu-toggle {
    color: var(--color-white);
}

body.menu-is-open .menu-toggle__line:first-child {
    transform: translateY(4.5px) rotate(45deg);
}

body.menu-is-open .menu-toggle__line:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
}

.fullscreen-menu__inner {
    min-height: 100vh;
    max-width: var(--container);
    margin: 0 auto;
    padding: 132px 40px 54px;
    display: grid;
    grid-template-rows: 1fr auto;
    gap: 56px;
}

.fullscreen-menu__main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

.fullscreen-menu__eyebrow {
    margin: 0 0 18px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.46);
}

.fullscreen-menu__link {
    position: relative;
    width: fit-content;
    overflow: hidden;
    padding: 4px 0 8px;
    font-family: var(--font-heading);
    font-size: clamp(34px, 4.4vw, 58px);
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -0.018em;
    color: rgba(255, 255, 255, 0.88);
    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.fullscreen-menu__link span {
    display: inline-block;
    min-width: 46px;
    margin-right: 16px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.11em;
    color: rgba(255, 255, 255, 0.34);
    vertical-align: middle;
}

.fullscreen-menu__link::after {
    content: "";
    position: absolute;
    left: 62px;
    right: 0;
    bottom: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        #1E3A8A 0%,
        #7C3AED 32%,
        #D946EF 66%,
        #F97316 100%
    );
    transform: scaleX(0);
    transform-origin: left;
    opacity: 0.9;
    transition: transform 0.32s ease;
}

.fullscreen-menu__link:hover,
.fullscreen-menu__link:focus-visible {
    color: var(--color-white);
    transform: translateX(5px);
}

.fullscreen-menu__link:hover::after,
.fullscreen-menu__link:focus-visible::after {
    transform: scaleX(1);
}

.fullscreen-menu__footer {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.72);
}

.fullscreen-menu__brand p {
    margin: 0 0 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-white);
}

.fullscreen-menu__brand span {
    display: block;
    font-size: 15px;
    line-height: 1.4;
}

.fullscreen-menu__contact {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    font-size: 15px;
    line-height: 1.4;
}

.fullscreen-menu__contact span {
    color: rgba(255, 255, 255, 0.46);
}

.fullscreen-menu__contact a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.32);
    transition:
        color 0.2s ease,
        border-color 0.2s ease;
}

.fullscreen-menu__contact a:hover,
.fullscreen-menu__contact a:focus-visible {
    color: var(--color-white);
    border-color: var(--color-white);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: var(--color-black);
    color: var(--color-white);
}

.hero__background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__image-placeholder {
    position: absolute;
    inset: 0;
    background-image: image-set(
        url("assets/images/hero.webp") type("image/webp"),
        url("assets/images/hero.jpg") type("image/jpeg")
    );
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(24, 24, 27, 0.54) 0%,
            rgba(24, 24, 27, 0.36) 44%,
            rgba(24, 24, 27, 0.62) 100%
        ),
        radial-gradient(
            circle at 50% 45%,
            rgba(24, 24, 27, 0.10) 0%,
            rgba(24, 24, 27, 0.42) 72%
        );
}

.hero__gradient-glow {
    position: absolute;
    width: 620px;
    height: 620px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background:
        radial-gradient(
            circle,
            rgba(247, 246, 243, 0.18) 0%,
            rgba(249, 115, 22, 0.10) 32%,
            transparent 70%
        );
    opacity: 0.65;
    filter: blur(90px);
    border-radius: 999px;
}

.hero__content {
    position: relative;
    z-index: 1;
    width: min(1080px, calc(100% - 48px));
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero__logo-wrap {
    width: min(560px, 82vw);
    margin-bottom: 42px;
    opacity: 0;
    transform: translateY(14px);
    animation: heroLogoFadeIn 0.9s ease 0.18s forwards;
}

.hero__logo {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes heroLogoFadeIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__title {
    margin: 0;
    max-width: 100%;
    font-family: var(--font-heading);
    font-size: clamp(48px, 6.4vw, 82px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.024em;
    text-wrap: balance;
    opacity: 0;
    transform: translateY(12px);
    animation: heroTitleFadeIn 0.9s ease 0.38s forwards;
}

@keyframes heroTitleFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__title span {
    display: block;
    white-space: nowrap;
}

.scroll-indicator {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: 38px;
    width: 34px;
    height: 34px;
    transform: translateX(-50%);
    display: grid;
    place-items: center;
    opacity: 0.72;
    transition:
        opacity 0.22s ease,
        transform 0.22s ease;
}

body.has-started-scroll .scroll-indicator {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(8px);
}

.scroll-indicator__arrow {
    width: 12px;
    height: 12px;
    border-right: 1.5px solid var(--color-white);
    border-bottom: 1.5px solid var(--color-white);
    transform: rotate(45deg);
}

.section {
    padding: clamp(112px, 9vw, 148px) 40px;
}

.section__inner {
    max-width: var(--container);
    margin: 0 auto;
}

.section__label {
    margin-bottom: 38px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(24, 24, 27, 0.55);
}

.section__title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -0.022em;
    overflow-wrap: break-word;
    text-wrap: balance;
}

.section__intro {
    max-width: 580px;
    margin: 22px 0 0;
    font-size: clamp(17px, 1.45vw, 20px);
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.008em;
    color: rgba(24, 24, 27, 0.72);
}

.about__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
    gap: clamp(48px, 7vw, 96px);
    align-items: center;
}

.about__content {
    max-width: 820px;
}

.about__text {
    max-width: 760px;
    margin: 32px 0 0;
    font-size: clamp(18px, 1.35vw, 20px);
    font-weight: 400;
    line-height: 1.68;
    letter-spacing: -0.008em;
}

.about__text p {
    margin: 0;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
}

.about__text p + p {
    margin-top: 22px;
}

.about__image-wrap {
    margin: 0;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #E8E5DE;
    box-shadow: 0 28px 80px rgba(24, 24, 27, 0.10);
}

.about__image-wrap img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center;
    display: block;
}

.about {
    background: var(--color-cream);
}

.visuals {
    background: var(--color-white);
    padding-top: clamp(104px, 8vw, 132px);
    padding-bottom: clamp(112px, 10vw, 160px);
}

.visuals__collage {
    margin-top: 56px;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: 68px;
    gap: 18px;
}

.visuals__item {
    margin: 0;
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: #111111;
    box-shadow: 0 24px 70px rgba(24, 24, 27, 0.08);
    isolation: isolate;
}

.visuals__image {
    position: absolute;
    inset: -1px;
    display: block;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    margin: 0;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.01);
    transition:
        opacity 1.9s ease,
        transform 8s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: opacity, transform;
}

.visuals__image.is-visible {
    opacity: 1;
}

.visuals__item::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(24, 24, 27, 0.00) 0%,
            rgba(24, 24, 27, 0.04) 55%,
            rgba(24, 24, 27, 0.18) 100%
        );
    pointer-events: none;
}

.visuals__item:hover .visuals__image.is-visible {
    transform: scale(1.04);
    filter: saturate(1.06) contrast(1.02);
}

/* Nieuwe verdeling desktop */
.visuals__item--dj {
    grid-column: 1 / span 4;
    grid-row: 1 / span 6;
}

.visuals__item--crowd {
    grid-column: 5 / span 4;
    grid-row: 1 / span 3;
}

.visuals__item--night {
    grid-column: 9 / span 4;
    grid-row: 1 / span 3;
}

.visuals__item--red {
    grid-column: 5 / span 8;
    grid-row: 4 / span 3;
}

.visuals__item--silent {
    grid-column: 1 / span 6;
    grid-row: 7 / span 3;
}

.visuals__item--festival {
    grid-column: 7 / span 6;
    grid-row: 7 / span 3;
}

/* Uitsnede per foto */
.visuals__item--dj .visuals__image {
    object-position: 55% 50%;
}

.visuals__item--crowd .visuals__image {
    object-position: center center;
}

.visuals__item--night .visuals__image {
    object-position: center center;
}

.visuals__item--red .visuals__image {
    object-position: center center;
}

.visuals__item--silent .visuals__image {
    object-position: center 42%;
}

.visuals__item--festival .visuals__image {
    object-position: center center;
}

.quote-strip {
    position: relative;
    min-height: clamp(500px, 68vh, 760px);
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: clamp(104px, 9vw, 150px) 40px;
    background: var(--color-black);
    color: var(--color-white);
    text-align: center;
    isolation: isolate;
}

.quote-strip--image {
    background-image:
        linear-gradient(
            180deg,
            rgba(24, 24, 27, 0.70) 0%,
            rgba(24, 24, 27, 0.48) 45%,
            rgba(24, 24, 27, 0.76) 100%
        ),
        radial-gradient(
            circle at 50% 46%,
            rgba(249, 115, 22, 0.16) 0%,
            transparent 42%
        ),
        image-set(
            url("assets/images/quote-party.webp") type("image/webp"),
            url("assets/images/quote-party.jpg") type("image/jpeg")
        );
    background-size: cover;
    background-position: center 44%;
}

.quote-strip__content {
    position: relative;
    z-index: 1;
    max-width: 980px;
}

.quote-strip p {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(56px, 8vw, 112px);
    font-weight: 500;
    line-height: 0.96;
    letter-spacing: -0.035em;
    text-wrap: balance;
}

.quote-strip p span {
    display: block;
}

.quote-strip__subline {
    display: block;
    margin-top: 28px;
    font-size: clamp(17px, 1.45vw, 21px);
    line-height: 1.5;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.78);
}

.music {
    background: var(--color-cream);
    padding-top: clamp(108px, 8vw, 140px);
    padding-bottom: clamp(108px, 9vw, 150px);
}

.music__content {
    max-width: none;
}

.music__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 42px;
}

.music__header .section__intro {
    max-width: 640px;
}

.music__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.soundcloud-player {
    height: clamp(390px, 42vw, 460px);
    margin-top: 46px;
    overflow: hidden;
    border-radius: 28px;
    background: var(--color-white);
    box-shadow: 0 30px 90px rgba(24, 24, 27, 0.10);
}

.soundcloud-player iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.contact {
    background:
        linear-gradient(180deg, var(--color-white) 0%, var(--color-cream) 100%);
    padding-top: clamp(108px, 8vw, 140px);
    padding-bottom: clamp(116px, 10vw, 160px);
}

.contact__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: start;
}

.contact__email {
    display: inline-block;
    margin-top: 28px;
    font-size: clamp(18px, 1.6vw, 21px);
    line-height: 1.4;
    border-bottom: 1px solid currentColor;
}

.contact-form {
    display: grid;
    gap: 18px;
}

.form-field {
    display: grid;
    gap: 8px;
}

.form-field label {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(24, 24, 27, 0.62);
}

.form-field input,
.form-field textarea {
    width: 100%;
    border: 1px solid rgba(24, 24, 27, 0.16);
    border-radius: 14px;
    padding: 15px 16px;
    background: var(--color-cream);
    color: var(--color-black);
    line-height: 1.5;
    outline: none;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--color-black);
}

.hidden-field {
    display: none;
}

.button {
    justify-self: start;
    border: 0;
    border-radius: var(--radius-button);
    padding: 15px 22px;
    font-weight: 500;
    line-height: 1.2;
    cursor: pointer;
}

.button--primary {
    background: var(--color-black);
    color: var(--color-white);
}

.form-status {
    display: none;
    margin: 2px 0 0;
    padding: 15px 16px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-size: 15px;
    line-height: 1.45;
}

.form-status.is-visible {
    display: block;
}

.form-status--success {
    border-color: rgba(30, 58, 138, 0.20);
    background: rgba(30, 58, 138, 0.08);
    color: var(--color-black);
}

.form-status--error {
    border-color: rgba(249, 115, 22, 0.28);
    background: rgba(249, 115, 22, 0.10);
    color: var(--color-black);
}

.contact-form.is-sending .button,
.button:disabled {
    opacity: 0.72;
    cursor: wait;
}

.site-footer {
    padding: 76px 40px;
    background: var(--color-black);
    color: var(--color-white);
}

.site-footer__inner {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    gap: 24px;
}

.site-footer__top-link {
    width: fit-content;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.72);
    border-bottom: 1px solid rgba(255, 255, 255, 0.38);
}

.site-footer__slogan {
    margin: 0;
    font-size: 22px;
    line-height: 1.3;
}

.site-footer__slogan span {
    display: block;
}

.site-footer__links {
    display: flex;
    gap: 18px;
}

.site-footer__links a {
    border-bottom: 1px solid currentColor;
}

.site-footer__copyright {
    margin: 24px 0 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
}

/* Scroll reveal animations */
.reveal {
    --reveal-delay: 0ms;
}

body.reveal-ready .reveal {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
    transition:
        opacity 0.72s ease,
        transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay);
    will-change: opacity, transform;
}

body.reveal-ready .reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    will-change: auto;
}

body.reveal-ready .visuals__item.reveal {
    transform: translate3d(0, 28px, 0) scale(0.985);
}

body.reveal-ready .visuals__item.reveal.is-visible {
    transform: translate3d(0, 0, 0) scale(1);
}

body.reveal-ready .about__image-wrap.reveal {
    transform: translate3d(0, 28px, 0) scale(0.985);
}

body.reveal-ready .about__image-wrap.reveal.is-visible {
    transform: translate3d(0, 0, 0) scale(1);
}

body.reveal-ready .contact-form .reveal {
    transform: translate3d(0, 18px, 0);
}

body.reveal-ready .contact-form .reveal.is-visible {
    transform: translate3d(0, 0, 0);
}

.soundcloud-player--unloaded {
    display: grid;
    place-items: center;
    height: 300px;
    padding: 32px;
}

.soundcloud-player__placeholder {
    display: grid;
    justify-items: center;
    gap: 14px;
    text-align: center;
}

.soundcloud-player__placeholder p {
    margin: 0;
    color: rgba(24, 24, 27, 0.62);
}

.soundcloud-player__load {
    justify-self: center;
}

@media (prefers-reduced-motion: reduce) {
    .hero__logo-wrap,
    .hero__title {
        opacity: 1;
        transform: none;
        animation: none;
    }

    body.reveal-ready .reveal,
    body.reveal-ready .visuals__item.reveal,
    body.reveal-ready .about__image-wrap.reveal,
    body.reveal-ready .contact-form .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@media (max-width: 800px) {
    .site-header {
        height: 74px;
        padding: 0 22px;
    }

    .header-logo {
    width: 82px;
    padding: 4px 6px;
    border-radius: 2px;
    }

    .hero__title {
        font-size: clamp(40px, 12.2vw, 48px);
        line-height: 1.02;
        letter-spacing: -0.018em;
    }

    .hero__title span {
        white-space: normal;
    }

    .hero__image-placeholder {
    inset: 0;
    transform: none;
    background-image: url("assets/images/hero-mobile.webp");
    background-position: center;
    }

    .hero__image-placeholder {
    background-position: center;
    }

    .hero__logo-wrap {
        width: min(390px, 86vw);
        margin-bottom: 32px;
    }

    .section {
    padding: 82px 22px;
    }

    .section__label {
        margin-bottom: 28px;
    }

    .section__title {
        font-size: clamp(40px, 11vw, 50px);
        line-height: 1.06;
        letter-spacing: -0.018em;
    }

    .section__intro {
        margin-top: 18px;
        font-size: 18px;
    }

    .about__text {
        margin-top: 26px;
        line-height: 1.65;
    }

    .about__text p {
    text-align: left;
    hyphens: none;
    }

    .about__grid {
    grid-template-columns: 1fr;
    gap: 42px;
    }

    .about__image-wrap {
        border-radius: 18px;
    }

    .about__image-wrap img {
        aspect-ratio: 4 / 5;
    }

    .visuals,
    .music,
    .contact {
        padding-top: 82px;
        padding-bottom: 88px;
    }

    .visuals__collage {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
    }

    .visuals__item--dj,
    .visuals__item--crowd,
    .visuals__item--night,
    .visuals__item--red,
    .visuals__item--silent,
    .visuals__item--festival {
        grid-column: auto;
        grid-row: auto;
    }

    .visuals__item--dj,
    .visuals__item--red {
        grid-row: span 2;
    }

    .quote-strip {
    min-height: 56vh;
    padding: 86px 22px;
    }

    .quote-strip--image {
        background-position: center center;
    }

    .quote-strip p {
        font-size: clamp(48px, 14vw, 64px);
        line-height: 0.98;
    }

    .quote-strip__subline {
        margin-top: 22px;
        font-size: 17px;
    }

    .music__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    }

    .music__button {
        width: 100%;
    }

    .soundcloud-player {
        height: 380px;
        margin-top: 36px;
        border-radius: 20px;
    }

    .contact__grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .site-footer {
        padding: 60px 22px;
    }

    .fullscreen-menu__inner {
    padding: 112px 22px 34px;
    gap: 42px;
    }

    .fullscreen-menu__main {
    gap: 18px;
    }

    .fullscreen-menu__eyebrow {
        margin-bottom: 16px;
    }

    .fullscreen-menu__link {
    font-size: clamp(30px, 9vw, 40px);
    line-height: 1.06;
    }

    .fullscreen-menu__link span {
    min-width: 34px;
    margin-right: 12px;
    font-size: 11px;
    }

    .fullscreen-menu__link::after {
    left: 46px;
    }

    .fullscreen-menu__footer {
        flex-direction: column;
        gap: 22px;
        padding-top: 24px;
    }

    .fullscreen-menu__contact {
        flex-direction: column;
        gap: 8px;
    }

        body.reveal-ready .reveal,
    body.reveal-ready .visuals__item.reveal,
    body.reveal-ready .about__image-wrap.reveal,
    body.reveal-ready .contact-form .reveal {
        opacity: 1;
        transform: none;
        transition: none;
        will-change: auto;
    }

    .hero__logo-wrap {
        animation-duration: 0.55s;
        animation-delay: 0.05s;
    }

    .hero__title {
        animation-duration: 0.55s;
        animation-delay: 0.16s;
    }
}

@media (max-width: 900px), (hover: none) and (pointer: coarse) {
    .hero__logo-wrap,
    .hero__title {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .hero__gradient-glow {
        display: none;
    }

    .menu-toggle,
    .header-logo,
    .language-switcher {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    body.reveal-ready .reveal,
    body.reveal-ready .visuals__item.reveal,
    body.reveal-ready .about__image-wrap.reveal,
    body.reveal-ready .contact-form .reveal {
        opacity: 1;
        transform: none;
        transition: none;
        will-change: auto;
    }
}
