.page-ambassadeurs {
    width: 100%;
    background-color: #010101;
}

.site-header {
    background-color: #010101;
}

.amb-hero {
    position: relative;
    width: 100%;
    height: 40.05vw;
    overflow: hidden;
}

.amb-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.amb-hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to bottom, rgba(1,1,1,0), #010101);
}

.amb-hero-title {
    position: absolute;
    bottom: 15vw;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'IvyMode', serif;
    font-size: 4.69vw;
    font-weight: 300;
    color: #ffffff;
    text-align: center;
    white-space: nowrap;
    text-shadow: 0 0.16vw 5.16vw rgba(0,0,0,0.8);
}

.amb-intro {
    padding: 4.17vw 8.54vw 0;
    text-align: center;
}

.amb-intro-title {
    font-family: 'IvyMode', serif;
    font-size: 2.6vw;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.1;
    max-width: 45vw;
    margin: 0 auto 1.56vw;
}

.amb-intro-subtitle {
    font-size: 1.04vw;
    color: #b2b2b2;
    line-height: 1.5;
    max-width: 50vw;
    margin: 0 auto;
}

.amb-grid-section {
    padding: 4.17vw 8.54vw 0;
}

.amb-grid {
    width: 100%;
}

.amb-grid-mobile {
    display: none;
}

.amb-grid-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2vw;
}

.amb-card {
    cursor: pointer;
    padding: 0 0.52vw;
}

.amb-card-image {
    width: 100%;
    height: 23.13vw;
    overflow: hidden;
    margin-bottom: 0.83vw;
}

.amb-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.amb-card:hover .amb-card-image img {
    transform: scale(1.05);
}

.amb-card-name {
    font-size: 1.04vw;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.5;
}

.amb-card-info {
    font-size: 1.04vw;
    color: #b2b2b2;
    line-height: 1.5;
}

.amb-grid-bottom {
    display: flex;
    align-items: center;
    margin-top: 2.08vw;
    gap: 1.56vw;
}

.amb-grid-line {
    flex: 1;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
    position: relative;
}

.amb-grid-line-active {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #ffffff;
    transition: left 0.4s ease, width 0.4s ease;
}

.amb-grid-nav {
    display: flex;
    gap: 0.52vw;
}

.amb-grid-nav button,
.amb-gallery-nav button,
.amb-popup-gallery-nav button,
.amb-popup-nav button {
    width: 2.6vw;
    height: 2.6vw;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #707070;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.amb-grid-nav button:hover,
.amb-gallery-nav button:hover,
.amb-popup-gallery-nav button:hover,
.amb-popup-nav button:hover {
    transform: scale(1.04);
    border-color: rgba(255, 255, 255, 0.6);
}

.amb-nav-prev svg,
.amb-gallery-prev svg,
.amb-popup-gallery-prev svg,
.amb-popup-prev svg {
    width: 0.78vw;
    height: auto;
    transform: rotate(90deg);
}

.amb-nav-next svg,
.amb-gallery-next svg,
.amb-popup-gallery-next svg,
.amb-popup-next svg {
    width: 0.78vw;
    height: auto;
    transform: rotate(-90deg);
}

.amb-content {
    display: flex;
    gap: 3.65vw;
    padding: 5.21vw 8.54vw;
}

.amb-content-left {
    flex: 0 0 25vw;
}

.amb-content-title {
    font-family: 'IvyMode', serif;
    font-size: 2.6vw;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.1;
}

.amb-content-right {
    flex: 1;
    font-size: 0.83vw;
    color: #b2b2b2;
    line-height: 1.88;
}

.amb-content-right p {
    margin-bottom: 1.04vw;
}

.amb-gallery-section {
    padding: 0 0 7.5vw 8.54vw;
    overflow: hidden;
}

.amb-gallery-nav {
    display: flex;
    gap: 0.52vw;
    margin-bottom: 2.08vw;
}

.amb-gallery-slider {
    width: 100%;
}

.amb-gallery-slider .slick-slide:nth-child(even) {
    transform: translateY(2.5vw);
}

.amb-gallery-slide {
    padding: 0 0.52vw;
}

.amb-gallery-slide a {
    display: block;
    cursor: pointer;
}

.amb-gallery-slide img {
    width: 100%;
    height: 30.21vw;
    object-fit: cover;
}

body.amb-popup-active .amb-grid-nav,
body.amb-popup-active .amb-gallery-nav {
    visibility: hidden;
}

.amb-popup {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background-color: #010101;
    overflow-y: auto;
    clip-path: inset(0 0 100% 0);
    transition: clip-path 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.amb-popup.active {
    clip-path: inset(0 0 0 0);
}

.amb-popup-bar {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    justify-content: flex-end;
    padding: 1.67vw 8.54vw;
}

.amb-popup-close {
    width: 2.6vw;
    height: 2.6vw;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #707070;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.amb-popup-close:hover {
    transform: scale(1.04);
    border-color: rgba(255, 255, 255, 0.6);
}

.amb-popup-close svg {
    width: 0.6vw;
    height: 0.6vw;
}

.amb-popup-body {
    position: relative;
}

.amb-popup-slide {
    display: none;
    padding: 0 8.54vw 5.21vw;
}

.amb-popup-slide.active {
    display: block;
}

.amb-popup-row {
    display: flex;
    gap: 3.13vw;
    padding: 0 10vw;
    margin-bottom: 2.6vw;
}

.amb-popup-image {
    width: 28.44vw;
    flex-shrink: 0;
}

.amb-popup-image img {
    width: 100%;
    height: 35.63vw;
    object-fit: cover;
}

.amb-popup-right {
    flex: 1;
    max-width: 31vw;
    padding-top: 6.6vw;
}

.amb-popup-desc {
    font-size: 1.04vw;
    color: #b2b2b2;
    line-height: 1.5;
    margin-bottom: 2.08vw;
}

.amb-popup-name {
    font-size: 1.56vw;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 0.52vw;
}

.amb-popup-info {
    font-size: 1.04vw;
    color: #b2b2b2;
    line-height: 1.5;
}

.amb-popup-vline {
    width: 1px;
    height: 4.58vw;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 1.56vw auto;
}

.amb-popup-scroll-down {
    display: flex;
    justify-content: center;
    margin-bottom: 2.6vw;
}

.amb-popup-scroll-down .scroll-circle {
    width: 2.6vw;
    height: 2.6vw;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #707070;
    display: flex;
    align-items: center;
    justify-content: center;
}

.amb-popup-scroll-down .scroll-circle svg {
    width: 0.98vw;
    height: auto;
}

.amb-popup-gallery {
    margin-top: 2.08vw;
    overflow: hidden;
}

.amb-popup-gallery-slider {
    width: 100%;
}

.amb-popup-gallery-slider .slick-slide:nth-child(even) {
    transform: translateY(2.5vw);
}

.amb-popup-gallery-slide {
    padding: 0 0.52vw;
}

.amb-popup-gallery-slide a {
    display: block;
    cursor: pointer;
}

.amb-popup-gallery-slide img {
    width: 100%;
    height: 30.21vw;
    object-fit: cover;
}

.amb-popup-gallery-nav {
    display: flex;
    justify-content: center;
    gap: 0.52vw;
    margin-top: 2.08vw;
}


.amb-lb-btn {
    width: 2.6vw;
    height: 2.6vw;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #707070;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.amb-lb-btn:hover {
    transform: scale(1.04);
    border-color: rgba(255, 255, 255, 0.6);
}

.amb-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.amb-lightbox.is-active {
    opacity: 1;
    visibility: visible;
}

.amb-lb-close {
    position: absolute;
    top: 2vw;
    right: 2vw;
}

.amb-lb-close svg {
    width: 0.6vw;
    height: 0.6vw;
}

.amb-lb-prev {
    position: absolute;
    top: 50%;
    left: 2vw;
    transform: translateY(-50%);
}

.amb-lb-prev svg {
    width: 0.78vw;
    height: auto;
    transform: rotate(90deg);
}

.amb-lb-next {
    position: absolute;
    top: 50%;
    right: 2vw;
    transform: translateY(-50%);
}

.amb-lb-next svg {
    width: 0.78vw;
    height: auto;
    transform: rotate(-90deg);
}

.amb-lb-content {
    max-width: 80vw;
    max-height: 80vh;
}

.amb-lb-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

@media only screen and (max-width: 767px) {
    .amb-hero {
        height: 80vw;
    }

    .amb-hero-title {
        font-size: 10.26vw;
        bottom: 20vw;
    }

    .amb-intro {
        padding: 8vw 6.15vw 0;
    }

    .amb-intro-title {
        font-size: 6vw;
        max-width: 100%;
    }

    .amb-intro-subtitle {
        font-size: 3.5vw;
        max-width: 100%;
    }

    .amb-grid-section {
        padding: 8vw 6.15vw 0;
    }

    .amb-grid-desktop {
        display: none;
    }

    .amb-grid-mobile {
        display: block;
    }

    .amb-grid-page {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 3vw;
    }

    .amb-card {
        padding: 0;
    }

    .amb-card-image {
        height: 55vw;
    }

    .amb-card-name {
        font-size: 4vw;
    }

    .amb-card-info {
        font-size: 3.5vw;
    }

    .amb-grid-bottom {
        margin-top: 5vw;
    }

    .amb-grid-nav button,
    .amb-gallery-nav button,
    .amb-popup-gallery-nav button,
    .amb-popup-nav button {
        width: 10vw;
        height: 10vw;
    }

    .amb-nav-prev svg,
    .amb-gallery-prev svg,
    .amb-popup-gallery-prev svg,
    .amb-popup-prev svg,
    .amb-nav-next svg,
    .amb-gallery-next svg,
    .amb-popup-gallery-next svg,
    .amb-popup-next svg {
        width: 3.5vw;
    }

    .amb-content {
        flex-direction: column;
        padding: 8vw 6.15vw;
        gap: 5vw;
    }

    .amb-content-left {
        flex: none;
    }

    .amb-content-title {
        font-size: 7vw;
    }

    .amb-content-right {
        font-size: 3.5vw;
    }

    .amb-gallery-section {
        padding: 0 0 8vw;
    }

    .amb-gallery-nav {
        padding: 0 6.15vw;
        margin-bottom: 5vw;
    }

    .amb-gallery-slider .slick-slide:nth-child(even),
    .amb-popup-gallery-slider .slick-slide:nth-child(even) {
        transform: none;
    }

    .amb-gallery-slide img {
        height: 60vw;
    }

    .amb-popup-bar {
        padding: 5.13vw 6.15vw;
    }

    .amb-popup-close {
        width: 10vw;
        height: 10vw;
    }

    .amb-popup-close svg {
        width: 3vw;
        height: 3vw;
    }

    .amb-popup-slide {
        padding: 0 6.15vw 8vw;
    }

    .amb-popup-row {
        flex-direction: column;
        padding: 0;
        gap: 5vw;
    }

    .amb-popup-image {
        width: 100%;
    }

    .amb-popup-image img {
        height: 100vw;
    }

    .amb-popup-right {
        max-width: 100%;
        padding-top: 0;
    }

    .amb-popup-desc {
        font-size: 3.5vw;
    }

    .amb-popup-name {
        font-size: 7vw;
    }

    .amb-popup-info {
        font-size: 3.5vw;
    }

    .amb-popup-vline {
        height: 12vw;
        margin: 5vw auto;
    }

    .amb-popup-scroll-down {
        margin-bottom: 5vw;
    }

    .amb-popup-scroll-down .scroll-circle {
        width: 10vw;
        height: 10vw;
    }

    .amb-popup-scroll-down .scroll-circle svg {
        width: 3.5vw;
    }

    .amb-popup-gallery-slide img {
        height: 60vw;
    }

    .amb-lb-btn {
        width: 10vw;
        height: 10vw;
    }

    .amb-lb-close svg {
        width: 3vw;
        height: 3vw;
    }

    .amb-lb-prev svg,
    .amb-lb-next svg {
        width: 3.5vw;
    }

    .amb-lb-close {
        top: 5vw;
        right: 5vw;
    }

    .amb-lb-prev {
        left: 5vw;
    }

    .amb-lb-next {
        right: 5vw;
    }
}
