*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}ul,ol{list-style:none}button{all:unset;cursor:pointer}a{text-decoration:none;color:inherit}input,textarea{all:unset;width:100%;font-family: inherit;}html{scroll-behavior:smooth;font-size:16px;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}body{font-family:system-ui,sans-serif;font-weight:400;line-height:1.6;background-color:#fff;color:#222;min-height:100vh;text-rendering:optimizeSpeed;overflow-x:hidden}img,picture,video,canvas,svg{max-width:100%;display:block;height:auto}table{border-collapse:collapse;width:100%}*:focus-visible{outline:2px solid #007bff;outline-offset:2px}*:focus:not(:focus-visible){outline:none}button,select{font:inherit}
:root {

    /* Typography */
    --font-base: 16px;
    --font-body: "Commissioner", serif;
    --font-title: "Literata", serif;
    --font-size-xs: 0.775rem; 
    --font-size-sm: 0.875rem; /* 14px */
    --font-size-md: 1rem; /* 16px */
    --font-size-lg: 1.25rem; /* 20px */
    --font-size-xl: 1.5rem; /* 24px */
    --font-title-weight: 290;
    --font-weight-bold: 700;
    --font-weight-light: 290;
    --font-weight-normal: 400;

    /* Colors */
    --color-body: #222;
    --color-bg: #fff;
    --color-link: blue;
    --color-action: #f1a555;
    --color-border: #ddd;
    --color-muted: #444;
    --color-danger: #e63946;
    --color-success: #2a9d8f;
    --color-warning: #f4a261;
    --color-gold: #99795c;
    --color-blue: #65739d;
    --color-bluelight: #f5f7ff;
    --color-greylight: #f8f8f8;
    --btn-color : #fff;
    --body-bg : #fdfdf4;
    --body-bg: white;
    --light-beige: #f9f5f0;
    --btn-bg: #f5f2ef;
    --btn-border: #d9cbbf;
    --btn-bg-blue: #efeff3;
    --btn-border-blue: #c0c2cd;
    --dark-blue: #383e4f;

    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-full: 9999px; /* Fully rounded */

    /* Spacing */
    --spacing-xs: 0.5rem; /* 8px */
    --spacing-sm: 1rem; /* 16px */
    --spacing-md: 1.5rem; /* 24px */
    --spacing-lg: 2rem; /* 32px */
    --spacing-xl: 3rem; /* 48px */

    /* Shadows */
    --shadow-sm: 0px 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0px 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0px 10px 15px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition-fast: 0.2s ease-in-out;
    --transition-medium: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;

    /* line height */
    --lineheight-xsm: 0.3em;
    --lineheight-sm: 0.75em;
    --lineheight-1: 1em;
    --lineheight-def: 1.6em;
    --lineheight-md: 1.85em;
    --lineheight-lg: 2.25em;
}.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-blue);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: var(--font-title);
    font-size: 3rem;
    font-weight: 100;
    z-index: 9999;
}

.page-loader--text {
    margin-bottom: 10px;
    color: white;
}

.page-loader--progress {
    width: 150px;
    height: 1px;
    background: #000;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: rgba(255,255,255,.8);
    transition: width 0.1s linear;
}

.fade-out {
    opacity: 0;
    transition: opacity 1.5s ease-out;
}html {
    font-size: var(--font-base); /* Base size */
    font-family: var(--font-body);
}

body {
    font-family: var(--font-body);
    color: var(--color-body);
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    background: var(--body-bg);
}

.page-wrapper {
    background: none;
}

main {
    padding: 1rem 0 5rem;
}

.container {
    max-width: 1325px;
    margin: 0 auto;
    padding: 0 1rem;
}

.container--width-full {
    max-width: 1550px;
}

.container--text {
    max-width: 700px;
}

.container--center {
    margin: 0 auto;
}

section.container + section.container {
    margin-top: 8rem;
}

.container--flex {
    display: flex;
    gap: 2rem;
}

.container-flex--left50,
.container-flex--right50 {
    width: 50%;
}

.container-flex--left33,
.container-flex--right33 {
    width: calc(100% / 3);
}

.container-flex--right66,
.container-flex--left66 {
    width: calc(100% / 3 * 2);
}

.flex-ratio--large {
    width: 61.8%;
}

.flex-ratio--small {
    width: 38.2%;
}

.margintop-3 {
    margin-top: 3rem;
}

.margintop-5 {
    margin-top: 5rem;
}

.marginbottom-5 {
    margin-bottom: 5rem; 
}

.bg-white {
    background: white;
}

.no-maxwidth {
    max-width: none;
}

.padding-none {
    padding: 0;
}h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    font-optical-sizing: auto;
    font-weight: var(--font-weight-light);
}

h1, h2 {
    color: var(--color-gold);
    font-weight: var(--font-weight-bold);
}

h1 {
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.2em;
    margin: 0 0 0.5em;
    padding: 0;
}

h1 span {
    display: block;
    font-size: 0.5em;
    font-weight: 400;
    font-style: italic;
}

.banner h2 {
    display: block;
    font-size: clamp(1rem, 3vw, 1.25rem);
    font-family: var(--font-body);
    font-variation-settings: "slnt" 0, "wght" 350, "wdth" 100;
    line-height: 1.5em;
    max-width: 550px;
    color: var(--color-body);
    margin-top: 0;
}

h2 {
    font-size: clamp(2rem, 3.5vw, 3.25rem); /* 32px - 36px */
    line-height: 1.3em;
    margin: 0 0 0.5em;
    padding: 0;
}

h3 {
    line-height: 1.4em;
    margin: 0 0 0.5em;
    padding: 0;
    font-weight: 400;
    font-size: 2rem;
    color: var(--color-gold);
    font-style: italic;
    font-size: clamp(1.16rem, 2vw, 2rem);
}

h4 {
    font-size: clamp(1.05rem, 1vw, 1.5rem); /* 20px - 24px */
    line-height: 1.4em;
    margin: 0 0 0.5em;
    padding: 0;
    font-family: var(--font-body);
    font-weight: 500;
}

h5 {
    font-size: clamp(1.125rem, 3vw, 1.25rem); /* 18px - 20px */
    line-height: 1.5em;
    margin: 0 0 0.5em;
    padding: 0;
}

h6 {
    font-size: clamp(1rem, 2.5vw, 1.125rem); /* 16px - 18px */
    line-height: 1.5em;
    margin: 0 0 0.5em;
    padding: 0;
}

p {
    font-size: clamp(1rem, 2vw, 1rem); /* 16px */
    line-height: 1.85em;
    margin: 0 0 1em;
    padding: 0;
    font-weight: 400;
    max-width: 65ch;
}

.line-height--xsm {
    line-height: var(--lineheight-xsm)
}

.line-height--sm {
    line-height: var(--lineheight-sm)
}

.line-height--1 {
    line-height: var(--lineheight-1)
}

.line-height--def {
    line-height: var(--lineheight-def)
}

.line-height--md {
    line-height: var(--lineheight-md)
}

.line-height--lg {
    line-height: var(--lineheight-lg)
}

.text-bold {
    font-weight: 700;
}

.text-bold.text-serif {
    font-family: var(--font-title);
    font-style: italic;
}

.right-align {
    text-align: right;
}

.center-align {
    text-align: center;
}

p a {
    border-bottom: 1px solid;
    padding-bottom: 0.3em;
    font-weight: 600;
    font-family: var(--font-title);
    font-style: italic;
}


p a:hover {
    opacity: 0.8;
    border-color: transparent;
}.banner {
    margin: 3rem auto;
    flex: 1;
    width: 100%;
}

.banner > .container--text {
    display: flex;
    flex-direction: column;
    padding: 8rem 1rem;
    margin: 0;
    max-width: none;
    justify-content: center;
}

.banner--img {
    background: url(../img/viv-headerimg-cut.jpg) center/contain no-repeat;
    background: url(../img/virginie-8.jpg) center/contain no-repeat;
}

.banner--action {
    margin: 4rem 0 3rem;
}

.page-wrapper {
    transition: all 1.25s ease-out;
}

.home-loaded .page-wrapper {
    transform: translateY(3rem);
    opacity: 0;
}


a.btn, div.btn {
    padding: 0.75rem clamp(1rem, 2vw, 2rem);
    border: 1px solid var(--color-blue);
    /* border-radius: var(--radius-sm); */
    border-radius: 0;
    font-size: var(--font-size-xs);
    display: inline-flex;
    gap: 0.5rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
    background: var(--color-blue);
    color: var(--btn-color);
}

a.btn:hover {
    background: #fff;
}

a.btn-secondary, div.btn-secondary {
    background: var(--light-beige);
    color: var(--color-body);
    border-color: var(--btn-border);
    position: relative;
}

select#bio-lang-select {
    height: 45px;
    font-size: 1.25rem;
    background: white;
    color: var(--color-body);
    border-color: var(--btn-border);
    border-radius: var(--radius-sm);
    padding: 0 0.5rem;
    background: none;
    border: 0;
}

.btn.btn-secondary.bio-fake-btn {
    background: none;
    display: inline-flex;
    align-items: center;
    padding: 0;
    border: 0;
}

a.btn-noborder {
    border: 0;
}

a.btn-borderlight {
    border-color: var(--color-border);
}

.btn-wrapper {
    margin: 4rem 0 1rem;
    display: flex;
    justify-content: flex-end;
}

img.fw-img {
    width: 100%;
}

img.rounded-img {
    border-radius: var(--radius-md);
}


.cello-divider {
    position: relative;
    height: 0.5rem;
    max-width: 250px;
    width: 100%;
    border-top: 1px solid #bbb;
    border-bottom: 1px solid #bbb;
    border-top: 1px solid var(--btn-border);
    border-bottom: 1px solid var(--btn-border);
    margin: 7rem auto;
}

.cello-divider::before, .cello-divider::after {
    content: '';
    width: 100%;
    height: 1px;
    left: 0;
    background: #bbb;
    background: var(--btn-border);
    position: absolute;
}

.cello-divider::before {
    top: -0.5rem;
}

.cello-divider::after {
    bottom: -0.5rem;
}header {
    padding: 2rem 0;
}

header section.container--flex {
    align-items: center;
    justify-content: space-between;
}

.logo {
    margin-right: 1rem;
}

.logo svg {
    width: 100%;
    max-width: 225px;
    height: auto;
}

.header--nav ul{
    display: flex;
    align-items: baseline;
    gap: 1.25rem;
}

.header--nav > ul > li {
    position: relative;
}

.header--nav a {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    font-family: var(--font-title);
    font-weight: 550;
    line-height: 1;
    padding: 0.7em 0.5em 1em;
    display: flex;
    width: 100%;
    gap: 0.2rem;
    align-items: center;
}

.header--nav a svg {
    height: auto;
    width: 10px;
}

.header--nav a.active, .header--nav a:not(.nav--button):hover {
    background: url(../img/active-line.svg) no-repeat center bottom / 50px;
}

.header--nav a.nav--button {
    padding: 0.75rem clamp(1rem, 2vw, 2rem);
    /* border-radius: var(--radius-sm); */
    font-family: var(--font-body);
    border: 1px solid var(--color-muted);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--color-body);
    border-color: var(--color-body);
}

.header--nav a.nav--button:hover {
    background: var(--color-greylight);
}

/* Submenus */
.header--nav .item_with_submenu > ul {
    position: absolute;
    left: 0;
    top: 100%;
    background: var(--light-beige);
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    min-width: 180px;
    border: 1px solid var(--btn-border);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    z-index: 1;
    /* border-radius: var(--radius-sm); */
}

/* Show submenu on hover */
@media(min-width:900px) {
    .header--nav .item_with_submenu:hover > ul {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

a.lang-item {
    display: flex;
    width: 100%;
    justify-content: flex-start;
}

a.lang-item svg {
    height: auto;
    width: 1rem;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.5rem;
}

/* Submenu items */
.header--nav .item_with_submenu ul li {
    position: relative;
    width: 100%;
}

/* Second-level submenu (nested) */
.header--nav .item_with_submenu ul .item_with_submenu > ul {
    top: -1px;
    left: 100%;
    margin-left: -1px;
    background: var(--light-beige);
}

/* Submenu links */
.header--nav .item_with_submenu ul a {
    padding: 1rem 0.75rem;
    display: flex;
    letter-spacing: 0;
}

@media(min-width:900px) {
    .header--nav .item_with_submenu ul a {
        text-transform: capitalize;
        font-size: 0.7rem;
        white-space: nowrap;
    }
}

.header--nav .item_with_submenu ul a svg.parentitem-svg {
    transform: rotate(-90deg);
}

.header--nav .item_with_submenu ul a:hover {
    background: white;
}

button.nav-trigger, button.nav-close {
    padding: 1rem;
    background: var(--color-body);
    color: white;
    display: none;
    font-size: 2rem;
}

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

.mobile-menu-return a {
    display: flex!important;
    width: 100%;
    align-items: center;
    gap: 0.5rem;
}

@media(max-width:900px){
    .mobile-menu-return {
        display: block;
    }

    .header--nav > ul {
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        z-index: 10;
        overflow: hidden;
        background: white;
        flex-direction: column;
        padding: 5rem 1rem;
        gap: 0.5rem;
        visibility: hidden;
        opacity: 0;
        z-index: -10;
        transform: translateY(-50px);
        transition: all var(--transition-medium);
        align-items: flex-start;
    }

    .header--nav a {
        font-size: 1.1rem;
    }

    .menu-open {
        overflow: hidden;
    }

    .menu-open .header--nav > ul {
        visibility: visible;
        opacity: 1;
        z-index: 10;
        transform: translateY(0px);
    }

    .header--nav a svg.parentitem-svg {
        transform: rotate(-90deg);
    }

    button.nav-trigger {
        display: block;
    }

    .logo svg {
        max-width: 180px;
    }

    button.nav-close {
        display: block;
        position: fixed;
        top: 0.5rem;
        right: 0.5rem;
        z-index: 11;
    }

    a.lang-item {
        justify-content: flex-start;
    }

    .header--nav .item_with_submenu ul, .header--nav .item_with_submenu ul .item_with_submenu > ul {
        position: fixed;
        width: 100%;
        height: 100%;
        background: white;
        left: 0;
        top: 0;
        display: block;
        min-width: 0;
        border: 0;
        visibility: visible;
        opacity: 1;
        overflow: hidden;
        background: white;
        flex-direction: column;
        padding: 5rem 1rem;
        gap: 0.5rem;
        transform: translateX(100%);
    }

    .header--nav .item_with_submenu ul.submenu-open, .header--nav .item_with_submenu ul .item_with_submenu > ul.submenu-open {
        transform: translateX(0);
    }
}

@media(min-width:901px){
    button.nav-close {
        display: none;
    }
}.container--media {
    gap: 5rem;
    margin-bottom: 5rem;
}

.recordings-types-wrap {
    /* opacity: 0;
    transform: translateX(3rem); */
    /* max-width: 750px; */
    margin: 3rem auto;
    position: relative;
}

.recording-arrows {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: flex;
}

.recording-arrows > div {
    padding: 1rem;
    cursor: pointer;
    background: var(--light-beige);;
}

.recording-arrows > div svg {
    transition: transform 0.3s ease
}

.recording-arrows > div.swiper-button-disabled {
    pointer-events: none;
    opacity: 0.3;
    background: none;
}

.recording-arrows > div.recording-arrows-next:hover svg {
    transform: translateX(0.5rem);
}

.recording-arrows > div.recording-arrows-prev:hover svg {
    transform: translateX(-0.5rem);
}

.recording-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: none;
    /* width: 100%;
    max-width: 400px; */
    /* transform: translateY(-3rem);
    opacity: 0; */
}

.recording-type--texts {
    padding: 0 1rem 2rem;
    padding: 0 1rem 2rem;
    width: 100%;
    max-width: 90%;
    transform: translateY(-2rem);
    background: white;
}

.recording-type h3 {
    text-transform: capitalize;
    margin: 1rem 0;
}
.recordings--image {
    width: 100%;
    padding-top: 100%;
    background-size: cover;
    background-position: center;
}

.recording--solo .recordings--image {
    background-image: url(../img/recordings-solo.jpg);
}

.recording--duo .recordings--image {
    background-image: url(../img/recordings-duo.jpg);
}

.recording--concertos .recordings--image {
    background-image: url(../img/viviane-about2.jpg);
    background-image: url(../img/recordingspage-orchestra.jpg);

}

.recording--chamber .recordings--image {
    background-image: url(../img/chamber-carousel.jpg);
}

.recording--videos .recordings--image {
    background-image: url(../img/videos-carousel-img.jpg);
}

.recordings-types--pagination {
    position: relative;
    margin-top: 10px;
    text-align: center;
    padding: 0rem 1rem 3rem;
}

.swiper-pagination-bullet {
    background: var(--color-body);
    width: 1.15rem;
    height: 1.15rem;
    margin: auto 0.35rem!important;
    /* opacity: 1; */
}

.swiper-pagination-bullet-active {
    background: var(--color-gold);
}

.recordings-types {
    position: relative;
}

.container--recordings p.container--text {
    margin-top: 5rem;
}

h3.recordings--title {
    font-size: 1.2rem;
}/* MEDIA SECTION */
.placeholdermedia-image {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: contain;
}
.media-preview {
    --plyr-color-main: var(--color-blue);
    --plyr-font-family: var(--font-body);
    padding: 1rem;
    background: var(--color-greylight);
    /* opacity: 0;
    transform: translateY(-3rem); */
}

p.media-preview--text {
    font-size: var(--font-size-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    display: flex;
    gap: 0.5rem;
    margin: 0;
    align-items: center;
    justify-content: center;
}

.media-preview img {
    margin: 0 auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    width: 100%;
}
.media-list-viviane li {
    padding: 1.75rem 1rem;
    border-bottom: 1px solid var(--btn-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.media-list-viviane li:last-child {
    border: 0;
}

.media-list-viviane li:hover, .media-list-viviane li.active {
    background: var(--btn-bg);
}

.media-list-viviane li.active button {
    display: none;
}

.media-list-viviane li button {
    display: inline-flex;
    gap: 0.5rem;
}

.media-list-viviane li p {
    font-size: var(--font-size-xs);
    font-weight: 500;
    margin: 0;
}

img.media-sectin-img {
    max-width: 100%;
    width: 100px;
    aspect-ratio: 4 / 3;
    display: none;
}

@media(min-width:768px) {
    .sticky-media {
        position: sticky;
        height: 100%;
        top: 1rem;
    }
}.container--about {
    gap: 8rem;
}

.about--left {
    background: url(../img/meet-cello3.jpg) center center/cover no-repeat;
    background: url(../img/viviane-frontal.jpg) center center/cover no-repeat;
    background: url(../img/virginie-14.jpg) center center/cover no-repeat;
}

ul.about-list {
    margin-top: 3rem;
}

ul.about-list li {
    justify-content: space-between;
    margin: 1rem 0 3rem;
}.testimonial-slider .swiper-slide {
    padding: 1rem;
}

.testimonial-slide{
    position: relative;
    padding: 2rem 1rem 1rem;
    border-top: 1px solid var(--btn-border)
}

.testimonial-slide p {
    font-family: var(--font-title);
    font-style: italic;
    font-size: 0.9rem;
}

.testimonial-slide span {
    font-size: 1.5rem;
    line-height: 1rem;
    position: absolute;
    top: -1.5rem;
    left: 2rem;
    width: 3rem;
    height: 3rem;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-slide h5 {
    font-family: var(--font-body);
    padding-left: 1rem;
    font-size: 1rem;
}
.testimonial-slide span svg {
    fill: var(--btn-border);
    width: 2rem;
}.page-footer {
    padding: 3rem 3rem 3rem;
    background: var(--light-beige);
}

.footer--inner h5 {
    font-size: 1.168rem;
    text-transform: uppercase;
    font-family: var(--font-body);
    font-weight: 300;
    letter-spacing: 0.23em;
    margin-bottom: 1em;
    padding-bottom: 1em;
    border-bottom: 1px solid var(--btn-border);
    max-width: 500px;
}

.footer--inner ul {
    border-bottom: 1px solid var(--btn-border);
    margin: 0;
    max-width: 500px;
}


.footer--inner p a {
    border-bottom: 0
}@media(max-width:1000px) {
    .container--about {
        gap: 4rem;
    }
}

@media(max-width:768px) {

    .container--about {
        gap: 3rem;
    }

    .recordings-types {
        grid-template-columns: repeat(2, 1fr);
    }
    .banner {
        flex-direction: column-reverse;
        gap: 1rem;
    }

    .container-flex--left50, .container-flex--right50 {
        width: 100%;
    }

    .banner--img {
        height: 50vw;
    }

    .banner > .container--text {
        padding: 1rem;
    }

    .banner--action {
        margin: 1.5rem 0 0;
    }

    .cello-divider {
        margin: 3.5rem auto;
    }

    .margintop-5 {
        margin-top: 2.5rem;
    }
    .marginbottom-5 {
        margin-bottom: 2.5rem;
    }

    .container--media {
        flex-direction: column;
        gap: 2.5rem;
        margin-bottom: 3rem;
    }

    .container--about {
        flex-direction: column-reverse;
    }

    .about--left{
        height: 90vw;
    }

    ul.about-list {
        margin-top: 2.5rem;
    }

    ul.about-list li {
        justify-content: space-between;
        margin: 1rem 0 2rem;
        text-align: left!important;
    }

    .media-preview {
        padding: 0.25rem;
    }

    .media-list-viviane li {
        padding: 0.75rem 0.5rem;
        gap: 0.35rem;
    }

    .media-list-viviane li p {
        height: calc(var(--font-size-xs)* 2);
        overflow: hidden;
    }
    p.only-large-screen {
        display: none;
    }
    p.only-small-screen {
        display: flex;
    }
}

@media(max-width:567px) {
    .container--recordings h4 {
        text-align: center;
    }
    .recordings-types {
        grid-template-columns: repeat(1, 1fr);
        place-items: center;
    }

    .btn-wrapper {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .btn-wrapper > * {
        margin-left: 0!important;
    }
}

@media(min-width:769px) {
    p.only-large-screen{
        display: flex;
    }
    p.only-small-screen {
        display: none;
    }
}