@import url('https://fonts.googleapis.com/css2?family=Bowlby+One+SC&family=Manrope:wght@400;500;600;700;800&display=swap');


/* ==========================================
   RESET
========================================== */

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

html {
    scroll-behavior: auto;
}

body {
    margin: 0;
    background: #0d0d0d;
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    overflow-x: hidden;
}


/* ==========================================
   HEADER
========================================== */

.header {
    position: fixed;
    top: 24px;
    left: 50%;
    width: calc(100% - 48px);
    height: 76px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    padding: 0 26px;
    z-index: 1000;
    background: rgba(15, 15, 15, .68);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 18px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition:
        transform .45s cubic-bezier(.16, 1, .3, 1),
        opacity .35s ease;
}

.header-hidden {
    transform: translateX(-50%) translateY(-130px);
    opacity: 0;
}


/* ==========================================
   NAVIGATION
========================================== */

.nav {
    display: flex;
    align-items: center;
    gap: 36px;
    height: 100%;
}

.nav a {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, .68);
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    transition: color .25s ease;
}

.nav a:hover,
.nav a.active {
    color: #ffffff;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 19px;
    width: 0;
    height: 2px;
    background: #8CB5ED;
    transition: width .3s cubic-bezier(.16, 1, .3, 1);
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}


/* ==========================================
   BOUTON MOBILE
========================================== */

.mobile-menu-button {
    display: none;
}


/* ==========================================
   DROITE HEADER
========================================== */

.header-right {
    margin-left: auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}


/* ==========================================
   RÉSEAUX
========================================== */

.header-socials {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-right: 32px;
}

.header-socials .social-link {
    width: 36px;
    height: 36px;
    min-width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50%;
    color: #ffffff;
    transition:
        background .25s ease,
        border-color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.header-socials .social-link svg {
    width: 17px;
    height: 17px;
    fill: #ffffff;
}

.header-socials .social-link:hover {
    background: #8CB5ED;
    border-color: #8CB5ED;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 0 16px rgba(140, 181, 237, .25);
}


/* ==========================================
   LOGO HEADER
========================================== */

.header-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.header-logo {
    display: block;
    width: 54px;
    height: auto;
    filter: invert(1);
    transition: transform .3s cubic-bezier(.16, 1, .3, 1);
}

.header-logo-link:hover .header-logo {
    transform: scale(1.06);
}


/* ==========================================
   PHOTOS
========================================== */

.photos-section {
    width: 100%;
    padding: 155px 5vw 85px;
    background: #0d0d0d;
}

.photos-header {
    width: 100%;
    margin-bottom: 55px;
}


/* ==========================================
   PETITS LABELS
========================================== */

.section-label {
    margin-bottom: 30px;
}

.section-label span {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, .60);
}

.section-label-line {
    width: 45px;
    height: 2px;
    margin-top: 13px;
    background: #8CB5ED;
}


/* ==========================================
   GRANDS TITRES
========================================== */

.photos-header h2,
.audio-header h2 {
    font-family: "Bowlby One SC", sans-serif;
    font-size: clamp(55px, 7.5vw, 125px);
    font-weight: 400;
    line-height: .87;
    letter-spacing: -2px;
}

.photos-header h2 span,
.audio-header h2 span {
    display: block;
    color: #8CB5ED;
}


/* ==========================================
   GALERIE
========================================== */

.photo-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.photo-item {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 8px;
    background: #151515;
    cursor: pointer;
}

.photo-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform .7s cubic-bezier(.16, 1, .3, 1),
        filter .4s ease;
}

.photo-item::after {
    content: "+";
    position: absolute;
    right: 18px;
    bottom: 14px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 50%;
    background: rgba(0, 0, 0, .35);
    color: #ffffff;
    font-size: 22px;
    opacity: 0;
    transform: translateY(8px);
    transition:
        opacity .3s ease,
        transform .3s ease,
        background .3s ease;
}

.photo-item:hover img {
    transform: scale(1.05);
    filter: brightness(.82);
}

.photo-item:hover::after {
    opacity: 1;
    transform: translateY(0);
}


/* ==========================================
   SÉPARATEUR
========================================== */

.full-separator {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, .12);
}


/* ==========================================
   AUDIO
========================================== */

.audio-section {
    width: 100%;
    padding: 90px 5vw 100px;
    background: #0d0d0d;
}

.audio-header {
    width: 100%;
    margin-bottom: 55px;
}

.audio-list {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, .13);
}

.audio-track {
    width: 100%;
    min-height: 100px;
    display: flex;
    align-items: center;
    gap: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, .13);
}


/* ==========================================
   BOUTON AUDIO
========================================== */

.audio-play {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .32);
    border-radius: 50%;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    transition:
        background .3s ease,
        border-color .3s ease,
        color .3s ease,
        transform .3s ease;
}

.audio-play:hover,
.audio-track.playing .audio-play {
    background: #8CB5ED;
    border-color: #8CB5ED;
    color: #111111;
}

.audio-play:hover {
    transform: scale(1.05);
}

.play-icon {
    font-size: 12px;
}


/* ==========================================
   INFOS AUDIO
========================================== */

.audio-info {
    min-width: 0;
    flex: 1;
}

.audio-title {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 14px;
}

.audio-title span {
    flex-shrink: 0;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #8CB5ED;
}

.audio-title strong {
    min-width: 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #ffffff;
}


/* ==========================================
   PROGRESSION AUDIO
========================================== */

.audio-progress {
    position: relative;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, .14);
    cursor: pointer;
}

.audio-progress-bar {
    width: 0;
    height: 100%;
    background: #8CB5ED;
}

.audio-time {
    min-width: 42px;
    flex-shrink: 0;
    text-align: right;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, .45);
}


/* ==========================================
   LIGHTBOX
========================================== */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 100px;
    background: rgba(0, 0, 0, .94);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity .3s ease,
        visibility .3s ease;
}

.lightbox.open {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    display: block;
    max-width: 90vw;
    max-height: 86vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, .5);
}

.lightbox-close {
    position: absolute;
    top: 28px;
    right: 35px;
    width: 48px;
    height: 48px;
    border: 0;
    background: transparent;
    color: #ffffff;
    font-size: 40px;
    cursor: pointer;
    transition:
        color .25s ease,
        transform .25s ease;
}

.lightbox-close:hover {
    color: #8CB5ED;
    transform: rotate(90deg);
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    width: 55px;
    height: 55px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 50%;
    background: rgba(20, 20, 20, .7);
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease;
}

.lightbox-arrow:hover {
    background: #8CB5ED;
    border-color: #8CB5ED;
    color: #111111;
}

.lightbox-prev {
    left: 28px;
}

.lightbox-next {
    right: 28px;
}


/* ==========================================
   FOOTER
========================================== */

.footer {
    position: relative;
    padding: 55px 5vw 25px;
    background: #090909;
    border-top: 1px solid rgba(255, 255, 255, .10);
}

.footer-main {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 80px;
}

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

.footer-logo {
    display: block;
    width: 100px;
    height: auto;
    filter: invert(1);
}

.footer-brand p {
    margin-top: 22px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, .42);
}

.footer-links {
    display: flex;
    gap: clamp(55px, 7vw, 120px);
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.footer-label {
    margin-bottom: 10px;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #8CB5ED;
}

.footer-column a {
    position: relative;
    width: fit-content;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, .72);
    transition:
        color .25s ease,
        transform .25s ease;
}

.footer-column a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-bottom {
    width: 100%;
    margin-top: 45px;
    padding-top: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, .09);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, .28);
}


/* ==========================================
   CONTACT FLOTTANT
========================================== */

.floating-contact {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 900;
    height: 64px;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-decoration: none;
    color: #101010;
    background: #8CB5ED;
    border: 4px solid #161616;
    border-radius: 999px;
    box-shadow:
        0 0 0 1px rgba(140, 181, 237, .12),
        0 5px 16px rgba(0, 0, 0, .35),
        0 0 15px rgba(140, 181, 237, .30),
        0 0 32px rgba(140, 181, 237, .14);
    animation: contactGlow 2.4s ease-in-out infinite;
    transition:
        transform .3s cubic-bezier(.16, 1, .3, 1),
        box-shadow .3s ease,
        background .3s ease;
}

.floating-contact-icon {
    width: 23px;
    height: 23px;
    flex-shrink: 0;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.floating-contact-text {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.floating-contact:hover {
    transform: translateY(-3px) scale(1.02);
    background: #9CC2F3;
}

@keyframes contactGlow {
    0%,
    100% {
        box-shadow:
            0 0 0 1px rgba(140, 181, 237, .10),
            0 5px 16px rgba(0, 0, 0, .35),
            0 0 10px rgba(140, 181, 237, .22),
            0 0 24px rgba(140, 181, 237, .08);
    }

    50% {
        box-shadow:
            0 0 0 1px rgba(140, 181, 237, .18),
            0 5px 16px rgba(0, 0, 0, .35),
            0 0 18px rgba(140, 181, 237, .42),
            0 0 34px rgba(140, 181, 237, .15);
    }
}


/* ==========================================
   ANIMATIONS PAGE
========================================== */

.photos-header .section-label,
.audio-header .section-label {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity .7s ease,
        transform .8s cubic-bezier(.16, 1, .3, 1);
}

.photos-header h2,
.audio-header h2 {
    opacity: 0;
    transform: translateY(45px);
    transition:
        opacity .8s ease .12s,
        transform .9s cubic-bezier(.16, 1, .3, 1) .12s;
}

.photos-header.media-visible .section-label,
.audio-header.media-visible .section-label {
    opacity: 1;
    transform: translateY(0);
}

.photos-header.media-visible h2,
.audio-header.media-visible h2 {
    opacity: 1;
    transform: translateY(0);
}

.photo-item {
    opacity: 0;
    transform: translateY(35px) scale(.97);
    transition:
        opacity .7s ease,
        transform .8s cubic-bezier(.16, 1, .3, 1);
}

.photo-item:nth-child(1) {
    transition-delay: .05s;
}

.photo-item:nth-child(2) {
    transition-delay: .10s;
}

.photo-item:nth-child(3) {
    transition-delay: .15s;
}

.photo-item:nth-child(4) {
    transition-delay: .20s;
}

.photo-item:nth-child(5) {
    transition-delay: .25s;
}

.photo-item:nth-child(6) {
    transition-delay: .30s;
}

.photo-item:nth-child(7) {
    transition-delay: .35s;
}

.photo-grid.media-visible .photo-item {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.full-separator {
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 1.2s cubic-bezier(.16, 1, .3, 1);
}

.full-separator.media-visible {
    transform: scaleX(1);
}

.audio-track {
    opacity: 0;
    transform: translateY(25px);
    transition:
        opacity .6s ease,
        transform .7s cubic-bezier(.16, 1, .3, 1);
}

.audio-track:nth-child(1) {
    transition-delay: .05s;
}

.audio-track:nth-child(2) {
    transition-delay: .10s;
}

.audio-track:nth-child(3) {
    transition-delay: .15s;
}

.audio-track:nth-child(4) {
    transition-delay: .20s;
}

.audio-track:nth-child(5) {
    transition-delay: .25s;
}

.audio-list.media-visible .audio-track {
    opacity: 1;
    transform: translateY(0);
}


/* ==========================================
   TABLETTE
========================================== */

@media (max-width: 900px) {

    .header {
        top: 14px;
        width: calc(100% - 28px);
        height: 68px;
        padding: 0 18px;
        border-radius: 15px;
    }

    .nav {
        gap: 20px;
    }

    .nav a {
        font-size: 9px;
        letter-spacing: 1.3px;
    }

    .nav a::after {
        bottom: 16px;
    }

    .header-socials {
        gap: 8px;
        margin-right: 18px;
    }

    .header-socials .social-link {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }

    .header-socials .social-link svg {
        width: 15px;
        height: 15px;
    }

    .header-logo {
        width: 46px;
    }

    .photo-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 700px) {

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }


    /* HEADER */

    .header {
        top: 10px;
        left: 10px;
        width: calc(100% - 20px);
        height: 62px;
        transform: none;
        padding: 0 16px;
        border-radius: 14px;
        justify-content: space-between;
    }

    .header-hidden {
        transform: translateY(-100px);
        opacity: 0;
    }


    /* HAMBURGER */

    .mobile-menu-button {
        position: relative;
        z-index: 1002;
        width: 42px;
        height: 42px;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        background: transparent;
        border: 0;
        cursor: pointer;
    }

    .mobile-menu-button span {
        display: block;
        width: 23px;
        height: 2px;
        background: #ffffff;
        border-radius: 10px;
        transform-origin: center;
        transition:
            transform .3s ease,
            opacity .25s ease;
    }

    .header.menu-open .mobile-menu-button span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .header.menu-open .mobile-menu-button span:nth-child(2) {
        opacity: 0;
    }

    .header.menu-open .mobile-menu-button span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }


    /* MENU MOBILE */

    .nav {
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        height: auto;
        margin: 0;
        padding: 24px 22px 26px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        background: rgba(13, 13, 13, .97);
        border: 1px solid rgba(255, 255, 255, .10);
        border-radius: 14px;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-12px);
        transition:
            opacity .25s ease,
            transform .3s cubic-bezier(.16, 1, .3, 1),
            visibility .25s;
    }

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

    .nav a {
        width: 100%;
        height: auto;
        padding: 17px 0;
        display: block;
        font-family: "Bowlby One SC", sans-serif;
        font-size: 22px;
        font-weight: 400;
        line-height: 1;
        letter-spacing: .5px;
        color: rgba(255, 255, 255, .72);
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

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

    .nav a.active {
        color: #8CB5ED;
    }

    .nav a::after {
        display: none;
    }


    /* HEADER DROITE */

    .header-right {
        margin-left: auto;
    }

    .header-socials {
        display: none;
    }

    .header-logo {
        width: 42px;
    }


    /* PHOTOS */

    .photos-section {
        padding: 120px 20px 60px;
    }

    .photos-header {
        margin-bottom: 35px;
    }

    .section-label {
        margin-bottom: 22px;
    }

    .section-label span {
        font-size: 8px;
        letter-spacing: 3px;
    }

    .section-label-line {
        margin-top: 10px;
    }

    .photos-header h2,
    .audio-header h2 {
        font-size: clamp(40px, 12.5vw, 60px);
        line-height: .9;
        letter-spacing: -1px;
    }


    /* GALERIE */

    .photo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .photo-item {
        border-radius: 6px;
    }

    .photo-item::after {
        display: none;
    }

    .photo-item:hover img {
        filter: none;
    }


    /* AUDIO */

    .audio-section {
        padding: 60px 20px 70px;
    }

    .audio-header {
        margin-bottom: 35px;
    }

    .audio-track {
        min-height: 100px;
        display: grid;
        grid-template-columns: 42px minmax(0, 1fr) 36px;
        gap: 12px;
        align-items: center;
        padding: 14px 0;
    }

    .audio-play {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }

    .audio-play:hover {
        transform: none;
    }

    .audio-info {
        width: 100%;
        min-width: 0;
    }

    .audio-title {
        width: 100%;
        display: flex;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 12px;
    }

    .audio-title span {
        padding-top: 1px;
        font-size: 7px;
        letter-spacing: 1px;
    }

    .audio-title strong {
        min-width: 0;
        font-size: 9px;
        line-height: 1.35;
        letter-spacing: .4px;
        overflow-wrap: anywhere;
    }

    .audio-progress {
        width: 100%;
    }

    .audio-time {
        width: 36px;
        min-width: 36px;
        font-size: 7px;
        letter-spacing: .2px;
        white-space: nowrap;
    }


    /* LIGHTBOX */

    .lightbox {
        padding: 65px 12px 85px;
    }

    .lightbox img {
        max-width: calc(100vw - 24px);
        max-height: 76vh;
        border-radius: 6px;
    }

    .lightbox-close {
        top: 10px;
        right: 12px;
        width: 45px;
        height: 45px;
        font-size: 36px;
    }

    .lightbox-arrow {
        top: auto;
        bottom: 18px;
        width: 44px;
        height: 44px;
        transform: none;
        font-size: 19px;
    }

    .lightbox-prev {
        left: calc(50% - 54px);
    }

    .lightbox-next {
        right: calc(50% - 54px);
    }


    /* FOOTER */

    .footer {
        padding: 44px 20px 22px;
    }

    .footer-main {
        flex-direction: column;
        gap: 48px;
    }

    .footer-logo {
        width: 82px;
    }

    .footer-brand p {
        margin-top: 18px;
        font-size: 8px;
        letter-spacing: 2.3px;
    }

    .footer-links {
        width: 100%;
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 42px 24px;
    }

    .footer-column {
        min-width: 0;
    }

    .footer-column:last-child {
        grid-column: 1 / -1;
    }

    .footer-column a {
        max-width: 100%;
        font-size: 12px;
        overflow-wrap: anywhere;
    }

    .footer-bottom {
        margin-top: 38px;
        padding-top: 22px;
        gap: 15px;
        font-size: 7px;
        line-height: 1.4;
        letter-spacing: 1px;
    }


    /* CONTACT */

    .floating-contact {
        right: 12px;
        bottom: 12px;
        height: 50px;
        padding: 0 17px;
        gap: 9px;
        border-width: 3px;
    }

    .floating-contact-icon {
        width: 18px;
        height: 18px;
    }

    .floating-contact-text {
        font-size: 10px;
        letter-spacing: 1.3px;
    }
}


/* ==========================================
   PETITS TÉLÉPHONES
========================================== */

@media (max-width: 380px) {

    .photos-section,
    .audio-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .photos-header h2,
    .audio-header h2 {
        font-size: 12vw;
    }

    .audio-track {
        grid-template-columns: 38px minmax(0, 1fr) 32px;
        gap: 8px;
    }

    .audio-play {
        width: 38px;
        height: 38px;
        min-width: 38px;
    }

    .audio-title strong {
        font-size: 8px;
    }

    .audio-time {
        width: 32px;
        min-width: 32px;
        font-size: 6px;
    }
}


/* ==========================================
   ACCESSIBILITÉ
========================================== */

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

    .photos-header .section-label,
    .photos-header h2,
    .photo-item,
    .full-separator,
    .audio-header .section-label,
    .audio-header h2,
    .audio-track {
        opacity: 1;
        transform: none;
        transition: none;
    }
}