@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');
/* source-sans-pro-regular - latin */

@font-face {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/source-sans-pro-v14-latin-regular.eot');
    /* IE9 Compat Modes */
    src: local(''), url('../fonts/sans-pro/source-sans-pro-v14-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../fonts/sans-pro/source-sans-pro-v14-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
    url('../fonts/sans-pro/source-sans-pro-v14-latin-regular.woff') format('woff'), /* Modern Browsers */
    url('../fonts/sans-pro/source-sans-pro-v14-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
    url('../fonts/sans-pro/source-sans-pro-v14-latin-regular.svg#SourceSansPro') format('svg');
    /* Legacy iOS */
}

body {
    margin: 0;
    /* margin-top: 90px; */
    padding: 0;
    font-family: 'Poppins', 'Source Sans Pro', Arial, sans-serif;
    }
    
    body :not(i):not(.fa):not(.fas):not(.far):not(.fab):not(.bi):not([class^="fa-"]):not([class*=" fa-"]) {
        font-family: 'Poppins', 'Source Sans Pro', Arial, sans-serif !important;
}

body a {
    color: inherit !important;
    text-decoration: inherit;
    transition: opacity ease-in-out .3s;
}

body a:hover {
    color: inherit;
    opacity: .8;
}

body img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all ease-in-out .5s;
}

body .logo {
    width: 470px;
    /* height: 28px; */
}

header {
    background-color: #000000;
    padding: 40px;
    padding-bottom: 0px;
    font-family: 'century gothic' !important;
}

header .navbar {
    background-color: #000000 !important;
}

.carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #000;
}
.carousel .carousel-inner {
    height: calc(100dvh - 139px);
        min-height: 0;
    }
    
    .carousel .carousel-inner .carousel-item {
        position: relative;
        height: 100%;
        overflow: hidden;
    }
    
    .carousel .carousel-inner .carousel-item::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        background:
            linear-gradient(90deg, rgba(0, 0, 0, .76) 0%, rgba(0, 0, 0, .42) 42%, rgba(0, 0, 0, .12) 100%),
            linear-gradient(0deg, rgba(0, 0, 0, .64) 0%, rgba(0, 0, 0, .08) 48%, rgba(0, 0, 0, .28) 100%);
        pointer-events: none;
    }
    
    .carousel .carousel-inner .carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        transform: scale(1.04);
        transform-origin: center center;
    }
    
    .carousel .carousel-inner .carousel-item.active img {
        animation: heroImageZoom 14s ease-in-out infinite;
    }
    
    @keyframes heroImageZoom {
        0% {
            transform: scale(1.04);
        }
    
        50% {
            transform: scale(1.12);
        }
    
        100% {
            transform: scale(1.04);
        }
    }
    
    @media (prefers-reduced-motion: reduce) {
        .carousel .carousel-inner .carousel-item.active img {
            animation: none;
        }
    
        .carousel .carousel-inner .carousel-item.active .carousel-caption,
        .carousel .carousel-inner .carousel-item.active .banner-label {
            animation: none;
        }
}

.carousel .carousel-inner .banner-label {
    position: absolute;
    top: clamp(22px, 5vh, 52px);
        left: clamp(20px, 8vw, 140px);
        z-index: 2;
        padding: 7px 18px;
    background-color: #d20b05;
    color: #fff !important;
    font-family: 'Source Sans Pro';
    font-size: 13px;
    font-weight: bold;
    line-height: 1;
    text-transform: uppercase;
    border-radius: 999px;
        box-shadow: 0 10px 24px rgba(0, 0, 0, .26);
}

.carousel .carousel-inner .carousel-caption {
    right: auto;
        bottom: clamp(42px, 10vh, 96px);
        left: clamp(20px, 8vw, 140px);
        z-index: 2;
        width: min(760px, calc(100% - 40px));
        padding: clamp(18px, 2vw, 28px) clamp(18px, 2.5vw, 34px);
        color: #fff;
    text-align: left;
    background: rgba(0, 0, 0, .46);
        border: 1px solid rgba(255, 255, 255, .14);
        border-radius: 12px;
        box-shadow: 0 22px 55px rgba(0, 0, 0, .32);
        backdrop-filter: blur(4px);
    }
    
    .carousel .carousel-inner .carousel-item.active .carousel-caption {
        animation: heroTextOverlayIn .72s ease-out both;
    }
    
    .carousel .carousel-inner .carousel-item.active .banner-label {
        animation: heroTextOverlayIn .58s ease-out both;
    }
    
    @keyframes heroTextOverlayIn {
        from {
            opacity: 0;
            transform: translateY(22px);
        }
    
        to {
            opacity: 1;
            transform: translateY(0);
        }
}

.carousel .carousel-inner .carousel-caption h5 {
    max-width: 13ch;
        margin-bottom: 14px;
    font-family: 'Source Sans Pro';
    font-size: clamp(36px, 5vw, 70px);
        font-weight: 800;
        line-height: .96;
        text-shadow: 0 12px 30px rgba(0, 0, 0, .42);
}

.carousel .carousel-inner .carousel-caption .title {
    max-width: 620px;
    font-family: 'Source Sans Pro';
    font-size: clamp(17px, 1.55vw, 23px);
        line-height: 1.45;
        text-shadow: 0 8px 22px rgba(0, 0, 0, .46);
}

header .navbar .nav-item .nav-link {
    color: #fff !important;
    padding: 10px 20px;
    font-weight: normal;
    font-size: 14px;
    font-weight: bold;
    transition: all ease-in-out .2s;
    text-transform: uppercase;
}

header .navbar .nav-item .nav-link:hover,
header .navbar .nav-item .nav-link.active {
    color: #d20b05 !important;
    font-weight: 800;
    font-family: 'Source Sans Pro';/* border-bottom: 1px solid #fff; */
}

header .language-switcher {
    position: relative;
    display: flex;
    align-items: center;
}

header .language-switcher-desktop {
    margin-left: 8px;
}

header .language-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 26px;
    padding: 0 10px;
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 999px;
    font-family: 'century gothic' !important;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0;
    transition: color ease-in-out .2s, border-color ease-in-out .2s, background-color ease-in-out .2s;
}

header .language-toggle:hover,
header .language-toggle:focus,
header .language-toggle.show {
    color: #d20b05;
    background-color: rgba(255, 255, 255, .06);
    border-color: rgba(210, 11, 5, .8);
    outline: none;
}

header .language-menu {
    min-width: 130px;
    padding: 8px 0;
    margin-top: 6px;
    background-color: #000;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 4px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, .45);
}
.personnalites .title {
    font-size: 30px;
    font-weight: bold;
    font-family: 'Source Sans Pro';
}

.personnalites .img {
    height: 370px;
    /* width: 255px; */
    background-color: #000;
    overflow: hidden;
    border-radius: 15px;
}

.personnalites .img img {
    transition: all ease-in-out .8s;
}

.personnalites .img:hover img {
    transform: scale(1.07);
}

.personnalites .type {
    font-weight: bold;
    font-size: 14px;
    color: #EB2E28;
}

.personnalites .name {
    font-weight: bold;
    color: #111111;
    font-size: 16px;
}

.personnalites .desc * {
    color: #000;
    text-align: justify;
    font-family: 'Source Sans Pro';
    font-weight: lighter;
}

.personnalites .read-more {
    font-weight: bold;
    /* border: 1px solid #000; */
    padding: 5px 10px;
    transition: all ease-in-out .4s;
}

.personnalites .period {
    font-family: 'Source Sans Pro';
    font-size: 14px;
}

.personnalites .publisher {
    font-family: 'Source Sans Pro';
    font-size: 14px;
    /* font-weight: bold; */
}


/* .personnalites .read-more:hover{
    background-color: #000;
    color: #fff !important;
    opacity: 1;
} */

.souvenirs {
    background-color: #000;
}

.souvenirs .img {
    height: 232px;
    overflow: hidden;
    background-color: grey;
    border-radius: 15px;
}

.souvenirs .img img {
    transition: all ease-in-out .8s;
}

.souvenirs .img:hover img {
    transform: scale(1.07);
}

.souvenirs .title-main {
    font-size: 30px;
    font-weight: bold;
    font-family: 'Source Sans Pro';
}

.souvenirs .date {
    font-size: 14px;
    color: #444444;
    font-family: 'Source Sans Pro';
}

.souvenirs .type {
    color: #AA211D;
    font-weight: bold;
    font-family: 'Source Sans Pro';
    font-size: 16px;
}

.souvenirs .title {
    color: #444444;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Source Sans Pro';
}

.souvenirs .extra * {
    color: #444444;
    font-family: 'Source Sans Pro';
}

.souvenirs .read {
    font-weight: bold;
    font-size: 12px;
    font-family: 'Source Sans Pro';
}

.souvenirs .read-more {
    color: #fff !important;
    font-weight: bold;
    /* border: 1px solid #fff; */
    padding: 5px 10px;
    transition: all ease-in-out .4s;
}

.souvenirs .category {
    font-size: 14px;
    font-family: 'Source Sans Pro';
}

.souvenirs .category>a:hover {
    color: #d20b05 !important;
}

.souvenirs .desc {
    /* height: 185px; */
    /* height: calc(70vh - 232px); */
}


/* .souvenirs .read-more:hover{
    background-color: #fff;
    color: #000 !important;
    opacity: 1;
} */

.others-souvenirs .img {
    height: 232px;
    overflow: hidden;
    background-color: grey;
    border-radius: 15px;
}

.others-souvenirs .more {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 30px;
}

.others-souvenirs .img img {
    transition: all ease-in-out .8s;
}

.others-souvenirs .img:hover img {
    transform: scale(1.07);
}

.others-souvenirs .title-main {
    font-size: 26px;
    font-weight: bold;
}

.others-souvenirs .date {
    font-size: 14px;
    color: #444444;
}

.others-souvenirs .type {
    color: #AA211D;
    font-weight: bold;
    font-family: 'Source Sans Pro';
    font-size: 16px;
}

.others-souvenirs .title {
    color: #444444;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Source Sans Pro';
}

.others-souvenirs .read {
    font-weight: bold;
    font-size: 12px;
}

.others-souvenirs .category {
    font-size: 14px;
    font-family: 'Source Sans Pro';
}

.others-souvenirs .category>a:hover {
    font-size: 14px;
    font-family: 'Source Sans Pro';
}

.alphabet .title-main {
    font-size: 30px;
    font-weight: bold;
    font-family: 'Source Sans Pro';
}

.alphabet .read-more {
    color: #000 !important;
    font-weight: bold;
    border: 1px solid #000;
    padding: 25px 20px;
    transition: all ease-in-out .4s;
}

.alphabet .read-more.no-effect {
    border: none !important;
}

.alphabet .read-more:hover {
    background-color: #000;
    color: #fff !important;
    opacity: 1;
}

.alphabet .read-more.no-effect:hover {
    background-color: inherit;
    color: inherit !important;
}

.alphabet .img {
    height: 100%;
    /* width: 255px; */
    background-color: #000;
    overflow: hidden;
    border-radius: 15px;
}

.alphabet .img img {
    transition: all ease-in-out .8s;
}

.alphabet .img:hover img {
    transform: scale(1.07);
}

.alphabet .name {
    font-weight: bold;
    color: #111111;
    font-size: 16px;
}

.alphabet .period {
    font-family: 'Source Sans Pro';
    font-size: 14px;
}

.personnalites .read-more,
.souvenirs .read-more,
.alphabet .read-more {
    /* width: 400px; */
}

.alphabet .alphabet-filter .nav {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    position: relative;
}

.alphabet .alphabet-filter .nav .ul-label {
    top: -12px;
    background: gray;
    padding-right: 15px;
    text-transform: uppercase;
    font-size: 12px;
}

.alphabet .alphabet-filter .nav-item .nav-link {
    font-size: 35px;
    font-weight: bold;
    padding: 2px;
    transition: all ease-in-out .3s;
}

.alphabet .alphabet-filter .nav-item .nav-link.active,
.alphabet .alphabet-filter .nav-item .nav-link:hover {
    color: #D0241F !important;
    background-color: #fff !important;
    opacity: 1;
}

.alphabet .concerned .content {
    position: relative;
    height: 370px;
    width: 100%;
    background-color: #000;
    border-radius: 15px;
}

.alphabet .concerned .content .overlay {
    position: absolute;
    background-color: rgba(0, 0, 0, .6);
    bottom: 0;
    left: 0;
    width: 100%;
    height: 85px;
    /* Haut rectangulaire, bas arrondi pour coller à la carte */
    border-radius: 0 0 15px 15px;
}

.alphabet .concerned .content .overlay .titre {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: #fff;
}

.alphabet .concerned .content .overlay .titre h4 {
    color: #fff !important;
}

.alphabet .concerned .content .overlay .titre p {
    font-size: 14px;
    color: #D0241F;
    font-weight: bold;
    text-shadow: 1px 1px 1px #000;
}

.alphabet.with-bg {
    background-color: gray;
}

.alphabet .alphabet-filter .nav-item .nav-link.active,
.alphabet .alphabet-filter .nav-item .nav-link:hover {
    background-color: transparent !important;
}

.categories .concerned .title-cat {
    font-size: 14px;
    background-color: #444444;
    padding: 3px;
    color: #fff !important;
}

.breadcrumb {
    margin-top: 20px;
    margin-bottom: 20px;
}

.breadcrumb .breadcrumb-item {
    font-size: 16px;
    text-transform: uppercase;
}

.souvenirs-all {
    background-color: gray;
}

.souvenirs-all .main-title {
    font-size: 26px;
    font-weight: bold;
}

.souvenirs-all .img {
    height: 232px;
    overflow: hidden;
    background-color: grey;
    border-radius: 15px;
}

.souvenirs-all .img img {
    transition: all ease-in-out .8s;
}

.souvenirs-all .img:hover img {
    transform: scale(1.07);
}

.souvenirs-all .title-main {
    font-size: 26px;
    font-weight: bold;
}

.souvenirs-all .date {
    font-size: 14px;
    color: #444444;
}

.souvenirs-all .type {
    color: #AA211D;
    font-weight: bold;
    font-family: 'Source Sans Pro';
    font-size: 16px;
}

.souvenirs-all .title {
    color: #444444;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Source Sans Pro';
}

.souvenirs-all .extra * {
    color: #444444;
    font-family: 'Source Sans Pro';
}

.souvenirs-all .category {
    font-size: 14px;
    font-family: 'Source Sans Pro';
}

.souvenirs-all .category>a:hover {
    color: #d20b05 !important;
}

.souvenirs-all .read {
    font-weight: bold;
    font-size: 12px;
}

.souvenirs-all .read-more {
    color: #000 !important;
    font-weight: bold;
    border: 1px solid #000;
    padding: 25px 60px;
    transition: all ease-in-out .4s;
}

.souvenirs-all .read-more:hover {
    background-color: #000;
    color: #fff !important;
    opacity: 1;
}

.personnage-show .list-group .list-group-item {
    border-color: #444444;
    background-color: transparent;
}

/* Barre de partage (personnage / histoire / événement) */
.row.share {
    border-radius: 15px;
}

.personnage-show .list-group .list-group-item .img {
    height: 370px;
    overflow: hidden;
    border-radius: 15px;
}

.personnage-show .list-group .list-group-item small {
    font-size: 12px;
    color: gray;
    font-style: italic;
    display: inline-block;
    margin-bottom: 30px;
}

.personnage-show .list-group .list-group-item .head {
    color: #777777;
    /* font-weight: bold; */
    font-size: 13px;
    display: inline-block;
    margin-top: 10px;
    text-transform: uppercase;
    font-family: 'Century Gothic';
}

.personnage-show .list-group .list-group-item h4 {
    color: #000;
    font-weight: bold;
    font-size: 16px;
    font-family: 'Century Gothic';
}

.personnage-show .right>h2 {
    font-size: 20px;
    color: #111111;
    font-weight: bold;
    font-family: 'Century Gothic';
}

.personnage-show .right .periode {
    font-weight: bold;
    color: #727272;
    font-size: 14px;
    font-family: 'Century Gothic';
}

.personnage-show .right .date {
    color: #727272;
    font-size: 14px;
}

.personnage-show .right .content * {
    color: #303030;
    font-family: 'Source Sans Pro';
}

.personnage-show .more {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 30px;
}

.others-pers .content {
    position: relative;
    height: 370px;
    width: 100%;
    background-color: #000;
    border-radius: 15px;
}

.others-pers .content .overlay {
    position: absolute;
    background-color: rgba(0, 0, 0, .6);
    bottom: 0;
    left: 0;
    width: 100%;
    height: 85px;
    /* Haut rectangulaire, bas arrondi pour coller à la carte */
    border-radius: 0 0 15px 15px;
}

.others-pers .content .img {
    height: 100%;
    background-color: #000;
    overflow: hidden;
    border-radius: 15px;
}

.others-pers .main-title {
    color: #111111;
    font-size: 20px;
    font-weight: bold;
}

.others-pers .name {
    font-weight: bold;
    /* color: #111111; */
    font-size: 16px;
}

.others-pers .content .overlay .titre {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: #fff;
}

.others-pers .content .overlay .titre h4 {
    color: #fff !important;
}

.others-pers .content .overlay .titre p {
    font-size: 14px;
    color: #D0241F;
    font-weight: bold;
    text-shadow: 1px 1px 1px #000;
}

.others-pers .period {
    font-family: 'Source Sans Pro';
    font-size: 14px;
}

.personnage-show hr {
    background-color: #444444 !important;
    opacity: 1;
}

.personnage-show hr:not([size]) {
    /* height: 2px; */
}

.souvenir-show .banner .img {
    height: 500px;
    overflow: hidden;
    background-color: #000;
    border-radius: 15px;
}

.souvenir-show .left h2 {
    color: #444444;
    font-size: 20px;
    font-weight: bold;
    font-family: 'Source Sans Pro';
}

.souvenir-show .left .date {
    color: #727272;
    font-size: 14px;
    display: inline-block;
    margin-top: 0px;
}

.souvenir-show .left .content * {
    color: #303030;
    font-family: 'Source Sans Pro' !important;
}

.souvenir-show .right .img {
    height: 370px;
    overflow: hidden;
    background-color: #000;
    border-radius: 15px;
}

.filter-container .this .form-control {
    border: 1px solid #000 !important;
    border-right: none !important;
    border-radius: 15px;
}

.filter-container .this .select2-selection.select2-selection--single{
    padding: 12px !important;
    border: 1px solid #000 !important;
    height: auto !important;
    border-radius: 15px;
}

.filter-container .this .select2-container--default .select2-selection--single .select2-selection__arrow{
    padding: 12px !important;
    height: 54px !important;
    width: 50px !important;
}

.filter-container .this .select2-container--default .select2-selection--single .select2-selection__arrow b{
    border-width: 8px 7px 0 7px !important;
}

.filter-container .this .select2-container--default .select2-selection--single .select2-selection__rendered{
    text-transform: uppercase;
}

.filter-container .this .input-group-text {
    border: 1px solid #000;
    border-left: none;
    padding: 10px 40px;
}

footer {
    background-color: #000000;
    color: #fff;
    font-size: 13px;
    font-family: 'century gothic' !important;
}

footer .our-story-together {
    color: #CFA15C;
    font-weight: bold;
    font-size: 50px;
    margin-top: 20px;
    letter-spacing: 2px;
}

footer .contact ul li a {
    font-weight: bold;
}

footer .text {
    font-size: 20px;
    font-weight: bold;
}

footer .share .fab {
    border: 1px solid #fff !important;
    border-radius: 50px !important;
}

footer .subscribe {
    background-color: #fff;
    color: #000 !important;
    padding: 10px 45px;
    font-weight: bold;
    font-size: 20px;
    border-radius: 15px;
}

footer .links li a {
    padding-right: 2px;
    padding-left: 2px;
    opacity: .9;
    font-size: 13px;
    font-weight: lighter;
}

footer .signature {
    border-top: 1px solid #cfa15c5c;
}

.newsletter-border {
    border: 1px solid #cfa15c5c;
    background: rgba(0, 0, 0, 0.7);
}

.newsletter-border form .form-control {
    border: none;
    border-radius: 15px;
    /* background-color: rgba(255, 255, 255, .8); */
}

.newsletter-border form .form-check-input[type=checkbox] {
    border-radius: 15px;
    border: 1px solid #cfa15c5c;
    /* background-color: rgba(255, 255, 255, .8); */
    /* background: transparent; */
}

.newsletter-border form .submit-btn {
    border-radius: 15px;
    background-color: #D20B05;
}


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

.overlay-search-input {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background-color: rgba(0, 0, 0, .7);
    z-index: 1060;
    overflow: hidden;
    transition: all ease-in-out .4s;
}

.overlay-search-input.active {
    height: 100%;
}

.overlay-search-input.active .close-search {
    position: fixed;
    top: 3%;
    right: 3%;
    color: #fff;
    z-index: 1070;
    font-size: 25px;
}

.overlay-search-input .close-search:hover {
    cursor: pointer;
}

.offcanvas.search-open {
    visibility: hidden !important;
}

.content * {
    text-align: justify;
}

.icon {
    background: #010101;
    font-size: 20px;
    border-radius: 50%;
    display: inline-block;
    padding: 20px;
    color: #ffffff;
}

.bordered-right {
    background: #eee;
    padding-top: 30px;
}

.personnage-show .list-group-flush>.list-group-item:last-child {
    border-bottom: 1px solid #444444 !important;
}

.personnage-show .list-group-flush>.list-group-item:first-child {
    border-bottom: none !important;
}

.nav.nav-pills .nav-link.active {
    background: #000000;
    color: #FFFFFF !important;
}

.faq {
    height: 400px;
    overflow-y: scroll;
}


/* .faq::-webkit-scrollbar{
    width: 5px !important;
} */

.h-47 {
    height: 47%;
}

.card {
    border-radius: 15px;
}

.card-header.img {
    border-radius: 15px 15px 0 0;
    overflow: hidden;
}

/* Card « Les plus populaires » : haut arrondi */
.card-header.bg-dark {
    border-radius: 15px 15px 0 0;
}

/* Card « Les plus populaires » : bas arrondi */
.card-footer.bg-dark {
    border-radius: 0 0 15px 15px;
}

/* Liste « Les plus populaires » : bordures full-width, texte aligné au header */
.card-body.px-0 ul {
    padding-left: 0;
    list-style: none;
}

.card-body.px-0 ul li {
    /* Aligné sur le padding horizontal du .card-header (1rem) */
    padding-left: 1rem;
    padding-right: 1rem;
}

.card-body.px-0 ul li:not(:last-child) {
    border-bottom: 1px solid #444444;
}

.card-body.desc {
    border-radius: 0 0 15px 15px;
}

/* =================== MENU DROPDOWN STYLES =================== */

header .navbar-nav .menu-has-children {
    position: relative;
    display: flex;
    align-items: stretch;
}

header .menu-has-children>.nav-link,
header .menu-has-children>.dropdown-item {
    flex: 0 1 auto;
    min-width: 0;
    padding-right: 6px !important;
}

header .menu-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 18px;
    width: 18px;
    min-height: 100%;
    padding: 0;
    color: #fff;
    background: transparent;
    border: 0;
    line-height: 1;
    transition: color ease-in-out .2s, transform ease-in-out .2s;
}

header .menu-dropdown-toggle span {
    display: block;
    font-size: 10px;
}

header .menu-dropdown-toggle:hover,
header .menu-dropdown-toggle:focus,
header .menu-dropdown-toggle.show,
header .menu-has-children.active>.menu-dropdown-toggle {
    color: #d20b05;
    outline: none;
}

header .navbar-nav .dropdown-menu {
    display: none;
    min-width: 220px;
    padding: 8px 0;
    margin: 0;
    color: #fff;
    text-align: left;
    list-style: none;
    background-color: #000;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 4px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, .45);
}

header .navbar-nav>.menu-has-children>.dropdown-menu {
    top: 100%;
    left: 0;
}

header .dropdown-menu .menu-has-children>.dropdown-menu {
    top: -8px;
    left: 100%;
}

header .navbar-nav .dropdown-menu.show {
    display: block;
    animation: menuDropdownIn .18s ease-out both;
}

@keyframes menuDropdownIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

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

header .dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 10px 20px;
    clear: both;
    color: #fff !important;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    transition: color ease-in-out .2s, background-color ease-in-out .2s;
    font-family: 'century gothic' !important;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
}

header .dropdown-item:hover,
header .dropdown-item:focus,
header .dropdown-item.active,
header .dropdown-item:active {
    color: #d20b05 !important;
    background-color: transparent;
    font-weight: 800;
}

header .navbar-nav .nav-item.dropdown .nav-link {
    color: #fff !important;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: bold;
    transition: color ease-in-out .2s;
    text-transform: uppercase;
    font-family: 'century gothic' !important;
}

header .navbar-nav .nav-item.dropdown .nav-link:hover,
header .navbar-nav .nav-item.dropdown .nav-link.active {
    color: #d20b05 !important;
    font-weight: 800;
}

header .dropdown-menu .menu-dropdown-toggle {
    flex-basis: 24px;
}

header .dropdown-menu .menu-dropdown-toggle span {
    transform: rotate(-90deg);
}

header .dropdown-menu .menu-dropdown-toggle.show span {
    transform: rotate(90deg);
}

/* Mobile offcanvas dropdown styles */
header .offcanvas .dropdown-menu {
    position: static;
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
    padding: 8px 0 0 14px;
    margin: 0 0 2px;
    background-color: transparent;
    border: 0;
    border-left: 1px solid rgba(210, 11, 5, .38);
    border-radius: 0;
    box-shadow: none;
}

header .offcanvas .dropdown-item {
    min-height: 42px;
    margin-bottom: 6px;
    padding: 11px 12px;
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 6px;
    white-space: normal;
}

header .offcanvas .dropdown-item:hover,
header .offcanvas .dropdown-item:focus,
header .offcanvas .dropdown-item.active,
header .offcanvas .dropdown-item:active {
    background: rgba(210, 11, 5, .14);
    border-color: rgba(210, 11, 5, .32);
    font-weight: 800;
}

header .offcanvas .menu-has-children {
    display: grid;
    grid-template-columns: minmax(0, auto) 28px;
    align-items: center;
    justify-content: start;
    width: 100%;
    column-gap: 0;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 6px;
}

header .offcanvas .menu-has-children:hover,
header .offcanvas .menu-has-children:focus-within,
header .offcanvas .menu-has-children.active {
    background: rgba(210, 11, 5, .14);
    border-color: rgba(210, 11, 5, .34);
}

header .offcanvas .menu-has-children>.nav-link,
header .offcanvas .menu-has-children>.dropdown-item {
    width: auto;
    padding-right: 6px !important;
    background: transparent;
    border: 0;
}

header .offcanvas .menu-has-children>.nav-link:hover,
header .offcanvas .menu-has-children>.nav-link:focus,
header .offcanvas .menu-has-children>.nav-link.active,
header .offcanvas .menu-has-children>.dropdown-item:hover,
header .offcanvas .menu-has-children>.dropdown-item:focus,
header .offcanvas .menu-has-children>.dropdown-item.active {
    background: transparent;
    border: 0;
}

header .offcanvas .menu-dropdown-toggle {
    width: 28px;
    min-height: 44px;
    align-self: stretch;
}

header .offcanvas .dropdown-menu .menu-dropdown-toggle span,
header .offcanvas .menu-dropdown-toggle span {
    transform: none;
}

header .offcanvas .menu-dropdown-toggle.show span,
header .offcanvas .menu-has-children.show>.menu-dropdown-toggle span {
    transform: rotate(180deg);
}

@media (prefers-reduced-motion: reduce) {
    header .navbar-nav .dropdown-menu.show {
        animation: none;
    }

    header .menu-dropdown-toggle,
    header .dropdown-item,
    header .navbar-nav .nav-item.dropdown .nav-link {
        transition: none;
    }
}

/* Homepage 2026 */
.home-redesign {
    --home-black: #030303;
    --home-ink: #111111;
    --home-muted: #727272;
    --home-soft: #f3f3f3;
    --home-line: #d8d8d8;
    --home-gold: #cfa15c;
    --home-gold-dark: #a97d36;
    --home-red: #e4231d;
    --home-green: #64ad00;
    color: var(--home-ink);
    background: #fff;
    font-family: 'Poppins', 'Source Sans Pro', Arial, sans-serif;
}

.home-redesign *,
.home-redesign *::before,
.home-redesign *::after {
    box-sizing: border-box;
}

.home-redesign img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    isolation: isolate;
    background-color: #777;
    background-position: center;
    background-size: cover;
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(0, 0, 0, .62) 0%, rgba(0, 0, 0, .33) 42%, rgba(0, 0, 0, .08) 100%);
}

.home-hero__content {
    width: min(520px, 100%);
    padding: 90px 0 95px;
    color: #fff;
}

.home-hero__content h1 {
    margin: 0 0 18px;
    font-size: clamp(38px, 5vw, 58px);
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.home-hero__content p {
    margin: 0 0 34px;
    max-width: 500px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.55;
}

.home-btn,
.home-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

.home-btn {
    min-height: 54px;
    padding: 0 24px;
    color: #fff !important;
    background: var(--home-gold);
    border-radius: 6px;
    font-size: 13px;
}

.home-btn:hover {
    background: var(--home-gold-dark);
    opacity: 1;
}

.home-link {
    color: #0f172a !important;
    font-size: 12px;
}

.home-link:hover {
    color: var(--home-gold) !important;
    opacity: 1;
}

.home-stats {
    background: #000;
}

.home-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-stat {
    min-height: 82px;
    display: grid;
    grid-template-columns: 48px auto;
    grid-template-rows: auto auto;
    align-content: center;
    column-gap: 14px;
    padding: 16px 28px;
    color: #fff;
    border-right: 1px solid rgba(207, 161, 92, .55);
}

.home-stat:last-child {
    border-right: 0;
}

.home-stat i {
    grid-row: 1 / span 2;
    align-self: center;
    color: var(--home-gold);
    font-size: 38px;
    line-height: 1;
}

.home-stat strong {
    color: var(--home-gold);
    font-size: 31px;
    font-weight: 800;
    line-height: 1;
}

.home-stat span {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.home-section {
    padding: 72px 0;
}

.home-section--compact {
    padding-top: 20px;
}

.home-section__head {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 34px;
}

.home-section__head h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
}

.home-section__head span {
    width: 80px;
    height: 2px;
    background: #7f7f7f;
}

.home-section__actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 34px;
}

.moment-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    gap: 22px;
}

.moment-card {
    display: grid;
    grid-template-columns: 45% 55%;
    min-height: 210px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--home-line);
    border-radius: 6px;
}

.moment-card--featured {
    color: #fff;
    background: #050505;
    border-color: #050505;
}

.moment-card__image {
    min-height: 210px;
    overflow: hidden;
}

.moment-card__image img,
.discover-card__image img,
.memory-card img {
    transition: transform .55s ease;
}

.moment-card:hover img,
.discover-card:hover img,
.memory-card:hover img {
    transform: scale(1.06);
}

.moment-card__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
}

.moment-card__tag {
    margin-bottom: 12px;
    padding: 6px 10px;
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.moment-card__tag.is-gold {
    background: var(--home-gold);
}

.moment-card__tag.is-green {
    background: var(--home-green);
}

.moment-card h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.16;
}

.moment-card p {
    margin: 0 0 14px;
    color: inherit;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.45;
}

.moment-card .home-link {
    margin-top: auto;
}

.moment-card--featured .home-link {
    color: #fff !important;
}

.discover-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 34px 14px;
}

.discover-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid #dedede;
    border-radius: 7px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .04);
}

.discover-card__image {
    display: block;
    aspect-ratio: 1 / 1.05;
    overflow: hidden;
    background: #d8d8d8;
}

.discover-card__body {
    min-height: 118px;
    padding: 16px 16px 18px;
}

.discover-card h3 {
    margin: 0 0 5px;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.2;
}

.discover-card strong {
    display: block;
    margin-bottom: 10px;
    color: #050505;
    font-size: 12px;
    font-weight: 800;
}

.discover-card p {
    margin: 0;
    color: #333;
    font-size: 12px;
    font-weight: 500;
}

.home-day {
    background: #eeeeee;
}

.day-layout {
    display: grid;
    grid-template-columns: 1.38fr .88fr;
    gap: 16px;
}

.day-feature {
    display: grid;
    grid-template-columns: 40% 60%;
    min-height: 350px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #dadada;
    border-radius: 6px;
}

.day-feature__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 34px;
}

.day-feature h3 {
    margin: 0 0 18px;
    font-size: 23px;
    font-weight: 900;
    line-height: 1.12;
}

.day-feature p {
    margin: 0 0 34px;
    color: #2d2d2d;
    font-size: 13px;
    line-height: 1.5;
}

.day-feature__image {
    min-height: 350px;
}

.day-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px 28px;
    background: #fff;
    border: 1px solid #dadada;
}

.day-list__item {
    display: block;
    padding: 17px 0;
    border-bottom: 1px solid #d8d8d8;
}

.day-list__item strong,
.day-list__item span {
    display: inline;
    color: #222;
    font-size: 14px;
    line-height: 1.35;
}

.day-list__item strong {
    font-weight: 900;
}

.day-list__item span {
    font-weight: 700;
}

.home-link--right {
    align-self: flex-end;
    margin-top: 18px;
}

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

.memory-card {
    overflow: hidden;
    border-radius: 6px;
    background: #000;
}

.memory-card a {
    position: relative;
    display: block;
    min-height: 210px;
    color: #fff !important;
}

.memory-card a::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, .68), rgba(0, 0, 0, .1));
}

.memory-card span,
.memory-card em {
    position: absolute;
    z-index: 1;
    left: 22px;
    right: 22px;
}

.memory-card span {
    bottom: 54px;
    font-size: 23px;
    font-weight: 900;
    line-height: 1.08;
}

.memory-card em {
    bottom: 24px;
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
    text-transform: uppercase;
}

.home-cta {
    padding: 62px 0 66px;
    color: #fff;
    text-align: center;
    background: #050505;
}

.home-cta h2 {
    margin: 0 0 14px;
    color: var(--home-gold);
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 6px;
}

.home-cta p {
    margin: 0 auto;
    max-width: 640px;
    color: #d8d8d8;
    font-size: 14px;
    font-weight: 500;
}

@media screen and (max-width: 1199px) {

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

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

@media screen and (max-width: 991px) {

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

    .home-stat:nth-child(2) {
        border-right: 0;
    }

    .home-stat:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(207, 161, 92, .55);
    }

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

@media screen and (max-width: 767px) {
    .home-hero {
        min-height: 520px;
        background-position: center;
    }

    .home-hero__content {
        padding: 70px 0;
    }

    .home-section {
        padding: 48px 0;
    }

    .home-section__head {
        gap: 14px;
        margin-bottom: 24px;
    }

    .home-section__head h2 {
        font-size: 20px;
    }

    .home-section__head span {
        flex: 1;
        min-width: 44px;
    }

    .moment-card,
    .day-feature {
        grid-template-columns: 1fr;
    }

    .moment-card__image,
    .day-feature__image {
        min-height: 230px;
    }

    .discover-grid,
    .memory-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 12px;
    }

    .discover-card__body {
        padding: 13px;
    }

    .discover-card h3 {
        font-size: 14px;
    }

    .day-feature__text,
    .day-list {
        padding: 24px;
    }

    .home-cta h2 {
        letter-spacing: 3px;
    }
}

@media screen and (max-width: 520px) {

    .home-stats__grid,
    .discover-grid,
    .memory-grid {
        grid-template-columns: 1fr;
    }

    .home-stat,
    .home-stat:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid rgba(207, 161, 92, .55);
    }

    .home-stat:last-child {
        border-bottom: 0;
    }
}

/* Homepage refinements */
.home-redesign {
    --header-height: 139px;
}

.home-hero {
    min-height: calc(100vh - var(--header-height) - 92px);
}

.home-hero__content {
    padding: clamp(120px, 16vh, 210px) 0 clamp(95px, 12vh, 150px);
}

.home-hero__content h1 {
    max-width: 620px;
    text-shadow: 0 12px 34px rgba(0, 0, 0, .42);
}

.home-hero__content p {
    font-size: 16px;
}

.home-stats {
    min-height: 92px;
}

.home-stats__grid {
    min-height: 92px;
}

.home-stat {
    min-height: 92px;
}

.moment-grid {
    grid-template-columns: 1.15fr 1fr 1fr;
    align-items: stretch;
    gap: 18px;
}

.moment-card {
    position: relative;
    display: flex;
    min-height: 310px;
    overflow: hidden;
    color: #fff;
    background: #070707;
    border: 0;
    border-radius: 7px;
    box-shadow: 0 20px 44px rgba(0, 0, 0, .12);
}

.moment-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .08) 0%, rgba(0, 0, 0, .72) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .02) 65%);
    pointer-events: none;
}

.moment-card::before {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: 2;
    height: 5px;
    background: var(--home-gold);
}

.moment-card.is-gold::before {
    background: var(--home-gold);
}

.moment-card.is-green::before {
    background: var(--home-green);
}

.moment-card--featured {
    min-height: 350px;
}

.moment-card__image {
    position: absolute;
    inset: 0;
    min-height: 100%;
}

.moment-card__body {
    position: relative;
    z-index: 3;
    justify-content: flex-end;
    width: 100%;
    padding: 24px;
}

.moment-card__tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 15px;
    padding: 7px 10px;
    color: #111;
    background: #fff;
    border-radius: 4px;
    font-size: 11px;
}

.moment-card__tag i {
    color: var(--home-gold);
    font-size: 14px;
}

.moment-card.is-gold .moment-card__tag i {
    color: var(--home-gold);
}

.moment-card.is-green .moment-card__tag i {
    color: var(--home-green);
}

.moment-card h3 {
    max-width: 92%;
    margin-bottom: 12px;
    color: #fff;
    font-size: clamp(20px, 2.1vw, 30px);
    line-height: 1.08;
}

.moment-card:not(.moment-card--featured) h3 {
    font-size: clamp(18px, 1.5vw, 23px);
}

.moment-card p {
    max-width: 92%;
    color: rgba(255, 255, 255, .86);
    font-size: 13px;
}

.moment-card .home-link,
.moment-card--featured .home-link {
    color: #fff !important;
}

.day-layout {
    grid-template-columns: minmax(0, 1.45fr) minmax(190px, .42fr) minmax(0, .95fr);
    gap: 18px;
}

.day-feature {
    min-height: 390px;
}

.day-kicker {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--home-gold);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.day-date-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 390px;
    padding: 30px 24px;
    color: #fff;
    text-align: center;
    background: #050505;
    border-radius: 6px;
}

.day-date-card span {
    color: var(--home-gold);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.day-date-card strong {
    display: block;
    margin: 14px 0 18px;
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 900;
    line-height: .98;
    text-transform: uppercase;
}

.day-date-card p {
    margin: 0;
    color: #d9d9d9;
    font-size: 12px;
    line-height: 1.45;
}

.day-list {
    min-height: 390px;
    justify-content: flex-start;
}

.day-list h3 {
    margin: 8px 0 10px;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
}

.memory-grid {
    grid-template-columns: 1.25fr 1fr 1fr;
}

.memory-card {
    border-radius: 7px;
    box-shadow: 0 20px 44px rgba(0, 0, 0, .13);
}

.memory-card--large a {
    min-height: 300px;
}

.memory-card a {
    min-height: 300px;
}

.memory-card a::after {
    background: linear-gradient(0deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, .16));
}

.memory-card__overlay {
    position: absolute;
    inset: auto 0 0;
    z-index: 2;
    padding: 24px;
}

.memory-card__overlay small {
    display: inline-block;
    margin-bottom: 12px;
    padding: 5px 9px;
    color: #111;
    background: var(--home-gold);
    border-radius: 4px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.memory-card__overlay span,
.memory-card__overlay em {
    position: static;
    display: block;
    left: auto;
    right: auto;
    bottom: auto;
}

.memory-card__overlay span {
    margin-bottom: 10px;
    font-size: clamp(20px, 2vw, 27px);
}

.memory-card__overlay p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, .82);
    font-size: 13px;
    line-height: 1.45;
}

.site-footer {
    padding: 56px 0 36px;
    color: #fff;
    background: #000;
    text-align: center;
}

.site-footer a {
    color: inherit !important;
}

.site-footer__statement h3 {
    margin: 0 0 34px;
    color: var(--home-gold, #cfa15c);
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 800;
    letter-spacing: 6px;
    line-height: 1.25;
    text-transform: uppercase;
}

.site-footer__logo {
    display: inline-block;
    width: min(330px, 80vw);
    margin-bottom: 46px;
}

.site-footer__logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
    margin-bottom: 34px;
}

.site-footer__block p {
    margin: 0 0 14px;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.site-footer__block>ul>p {
    display: none;
}

.site-footer__block ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__block li {
    list-style: none;
}

.site-footer__block .subscribe {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 158px;
    height: 30px;
    padding: 0 18px;
    color: #000 !important;
    background: #fff;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.site-footer__links {
    margin-bottom: 18px;
}

.site-footer__links ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__links a,
.site-footer__signature {
    color: rgba(255, 255, 255, .62) !important;
    font-size: 11px;
}

.site-footer__signature {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 22px;
}

.site-footer__signature a {
    color: var(--home-gold, #cfa15c) !important;
    text-transform: uppercase;
}

@media screen and (max-width: 1199px) {
    .day-layout {
        grid-template-columns: 1fr;
    }

    .day-date-card,
    .day-list {
        min-height: auto;
    }
}

@media screen and (max-width: 991px) {
    .home-redesign {
        --header-height: 72px;
    }

    .home-hero {
        min-height: calc(100vh - var(--header-height));
    }

    .moment-grid,
    .memory-grid {
        grid-template-columns: 1fr;
    }

    .moment-card,
    .moment-card--featured {
        min-height: 320px;
    }
}

@media screen and (max-width: 767px) {
    .home-hero {
        min-height: calc(100svh - var(--header-height));
    }

    .home-hero__content {
        padding: 110px 0 90px;
    }

    .home-stat {
        grid-template-columns: 42px auto;
        padding: 16px 18px;
    }

    .day-feature {
        min-height: 0;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .site-footer__statement h3 {
        letter-spacing: 3px;
    }
}

.home-redesign a:hover,
.home-redesign .home-link:hover,
.home-redesign .discover-card:hover h3,
.home-redesign .discover-card:hover h3 a,
.home-redesign .day-list__item:hover strong,
.home-redesign .day-list__item:hover span,
.home-redesign .memory-card:hover em,
.site-footer a:hover {
    color: var(--home-gold, #cfa15c) !important;
    opacity: 1;
}

.home-redesign .moment-card:hover .moment-card__tag,
.home-redesign .memory-card:hover .memory-card__overlay small {
    background: var(--home-gold, #cfa15c);
}

.home-redesign .moment-card:hover::before,
.home-redesign .discover-card:hover {
    border-color: var(--home-gold, #cfa15c);
}

.home-redesign .discover-card:hover {
    box-shadow: 0 18px 42px rgba(207, 161, 92, .2);
}

/* Homepage photo-matched layout */
.home-redesign .container {
    max-width: 1640px;
}

.home-hero {
    min-height: calc(100vh - var(--header-height) - 86px);
}

.home-stats,
.home-stats__grid,
.home-stat {
    min-height: 86px;
}

.home-section {
    padding: 70px 0;
}

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

.moment-card,
.moment-card--featured {
    display: grid;
    grid-template-columns: 44% 56%;
    min-height: 270px;
    color: #111;
    background: #fff;
    border: 1px solid #dedede;
    border-radius: 6px;
    box-shadow: none;
}

.moment-card::after,
.moment-card::before {
    display: none;
}

.moment-card--featured {
    color: #fff;
    background: #030303;
    border-color: #dedede;
}

.moment-card__image {
    position: static;
    min-height: 270px;
}

.moment-card__body {
    position: static;
    justify-content: flex-start;
    min-width: 0;
    padding: 22px 22px 20px;
}

.moment-card__tag,
.home-redesign .moment-card:hover .moment-card__tag {
    gap: 8px;
    margin-bottom: 14px;
    padding: 6px 9px;
    color: #fff;
    background: var(--home-gold);
    border-radius: 0;
    font-size: 11px;
}

.moment-card__tag i {
    color: #fff;
}

.moment-card.is-green .moment-card__tag,
.home-redesign .moment-card.is-green:hover .moment-card__tag {
    background: var(--home-green);
}

.moment-card h3,
.moment-card:not(.moment-card--featured) h3 {
    max-width: none;
    color: inherit;
    font-size: 20px;
    line-height: 1.18;
}

.moment-card p {
    max-width: none;
    color: inherit;
    font-size: 13px;
}

.moment-card .home-link {
    color: inherit !important;
}

.discover-grid {
    gap: 48px 18px;
}

.discover-card {
    border-color: #dcdcdc;
    border-radius: 7px;
    box-shadow: none;
}

.discover-card__image {
    aspect-ratio: 1 / .88;
}

.discover-card__body {
    min-height: 122px;
    padding: 18px 18px 20px;
}

@media screen and (min-width: 992px) {
    .home-redesign .discover-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

.day-layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(220px, .42fr) minmax(0, .9fr);
}

.day-feature {
    min-height: 455px;
    grid-template-columns: 40% 60%;
    border-radius: 6px;
}

.day-feature__date {
    display: block;
    margin-bottom: 8px;
    color: #111;
    font-size: 15px;
    font-weight: 900;
}

.day-feature h3 {
    font-size: 27px;
}

.day-date-card,
.day-list {
    min-height: 455px;
}

.day-list__item strong,
.day-list__item span {
    display: inline;
}

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

.memory-card,
.memory-card--large {
    border-radius: 6px;
}

.memory-card a,
.memory-card--large a {
    min-height: 265px;
}

.memory-card__overlay {
    padding: 26px;
}

.memory-card__overlay small,
.memory-card__overlay p {
    display: none;
}

.memory-card__overlay span {
    margin-bottom: 18px;
    font-size: 25px;
}

.site-footer {
    padding: 64px 0 58px;
}

.site-footer__socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 21px;
    height: 21px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 50%;
    font-size: 10px;
}

.site-footer__block li {
    margin-bottom: 2px;
    font-size: 12px;
    font-weight: 700;
}

@media screen and (max-width: 1199px) {

    .moment-grid,
    .day-layout,
    .memory-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 767px) {
    .home-hero {
        min-height: calc(100svh - var(--header-height) - 172px);
    }

    .moment-card,
    .moment-card--featured,
    .day-feature {
        grid-template-columns: 1fr;
    }

    .moment-card__image,
    .day-feature__image {
        min-height: 240px;
    }
}

/* Final home matching pass */
header .navbar .nav-item .nav-link:hover,
header .navbar .nav-item .nav-link.active,
header .menu-dropdown-toggle:hover,
header .menu-dropdown-toggle:focus,
header .menu-dropdown-toggle.show,
header .menu-has-children.active>.menu-dropdown-toggle,
header .dropdown-item:hover,
header .dropdown-item:focus,
header .dropdown-item.active,
header .dropdown-item:active,
header .navbar-nav .nav-item.dropdown .nav-link:hover,
header .navbar-nav .nav-item.dropdown .nav-link.active {
    color: #cfa15c !important;
}

header .language-toggle:hover,
header .language-toggle:focus,
header .language-toggle.show {
    color: #cfa15c;
    border-color: rgba(207, 161, 92, .8);
}

@media screen and (min-width: 992px) {
    header .menu-home-link .menu-home-label {
        display: none;
    }

    header .menu-home-link i {
        margin: 0;
        font-size: 16px;
    }
}

.home-hero.carousel,
.home-hero__slides,
.home-hero__slide {
    min-height: calc(100vh - var(--header-height) - 86px);
    max-height: calc(100vh - var(--header-height) - 86px);
}

.home-hero.carousel {
    display: block;
}

.home-hero__slides {
    height: auto;
}

.home-hero__slide {
    position: relative;
    isolation: isolate;
    background-color: #777;
    background-image: var(--hero-image);
    background-position: center;
    background-size: cover;
    filter: brightness(1.1) contrast(1.05) saturate(1.1);
}

.home-hero__slide::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(0, 0, 0, .35) 0%, rgba(0, 0, 0, .18) 43%, rgba(0, 0, 0, .05) 100%);
}

.home-hero__slide .container {
    min-height: inherit;
    display: flex;
    align-items: center;
}

.home-hero__content {
    padding: 0;
}

.home-hero__control {
    width: 7%;
}

.moment-grid {
    grid-template-columns: 1.08fr 1fr 1fr;
    gap: 28px;
}

.moment-card,
.moment-card--featured {
    display: grid;
    grid-template-columns: 43% 57%;
    min-height: 268px;
    color: #111;
    background: #fff;
    border: 1px solid #dddddd;
    border-radius: 5px;
}

.moment-card--featured {
    color: #fff;
    background: #030303;
    border-color: #dddddd;
}

.moment-card__image {
    min-height: 268px;
}

.moment-card__body {
    justify-content: flex-start;
    padding: 20px 18px;
}

.moment-card__tag,
.home-redesign .moment-card:hover .moment-card__tag {
    color: #fff;
    background: #1d355e;
    border-radius: 0;
}

.moment-card.is-red .moment-card__tag,
.home-redesign .moment-card.is-red:hover .moment-card__tag {
    background: #e4231d;
}

.moment-card.is-green .moment-card__tag,
.home-redesign .moment-card.is-green:hover .moment-card__tag {
    background: #64ad00;
}

.moment-card__tag i {
    display: none;
}

.moment-card h3,
.moment-card:not(.moment-card--featured) h3 {
    color: inherit;
    font-size: 19px;
}

.moment-card p {
    color: inherit;
}

.moment-card .home-link {
    color: inherit !important;
}

.home-redesign .moment-card .home-link:hover {
    color: #cfa15c !important;
}

.day-layout {
    grid-template-columns: minmax(0, 1.42fr) minmax(0, .9fr);
    gap: 18px;
}

.day-feature {
    grid-template-columns: 40% 60%;
    min-height: 440px;
}

.day-feature__image {
    min-height: 440px;
}

.day-list {
    min-height: 440px;
    padding: 26px 34px;
    border-radius: 0;
}

.day-list h3 {
    margin: 0 0 8px;
    color: #111;
    font-size: 16px;
}

.day-list__item {
    padding: 18px 0;
}

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

.memory-card a,
.memory-card--large a {
    min-height: 270px;
}

.memory-card__overlay p,
.memory-card__overlay small {
    display: none;
}

.memory-card__overlay span {
    font-size: 24px;
}

@media screen and (max-width: 1199px) {

    .moment-grid,
    .day-layout,
    .memory-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 767px) {

    .home-hero.carousel,
    .home-hero__slides,
    .home-hero__slide {
        min-height: calc(100svh - var(--header-height) - 172px);
    }

    .moment-card,
    .moment-card--featured,
    .day-feature {
        grid-template-columns: 1fr;
    }
}

/* Data-only home final pass */
.home-hero.carousel,
.home-hero__slides,
.home-hero__slide {
    min-height: calc(100vh - var(--header-height) - 86px);
}

.home-hero__slide {
    filter: brightness(1.1) contrast(1.05) saturate(1.1);
}

.home-hero__slide::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(0, 0, 0, .35) 0%, rgba(0, 0, 0, .18) 43%, rgba(0, 0, 0, .05) 100%);
}

.home-hero__slide .container {
    align-items: center;
}

.home-hero__content {
    width: min(700px, calc(100% - 40px));
    padding: clamp(24px, 3vw, 34px) clamp(24px, 3vw, 38px);
    color: #fff;
    background: rgba(0, 0, 0, .52);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    box-shadow: 0 24px 58px rgba(0, 0, 0, .34);
}

.home-empty {
    display: flex;
    align-items: center;
    min-height: 120px;
    width: 100%;
    padding: 24px;
    color: #555;
    background: #f5f5f5;
    border: 1px solid #dedede;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
}

.home-empty--small {
    min-height: 80px;
    padding: 18px 0;
    background: transparent;
    border: 0;
}

.home-hero__content h1 {
    margin-bottom: 14px;
    font-size: clamp(36px, 4.6vw, 64px);
}

.home-hero__content p {
    color: #fff;
    font-size: clamp(15px, 1.25vw, 19px);
    line-height: 1.5;
    text-shadow: 0 4px 14px rgba(0, 0, 0, .45);
}

.home-stats {
    position: relative;
    z-index: 2;
}

.home-stats,
.home-stats__grid,
.home-stat {
    min-height: 86px;
}

.home-stat strong {
    min-width: 64px;
}

.moment-card.is-red .moment-card__tag,
.home-redesign .moment-card.is-red:hover .moment-card__tag {
    background: #e4231d;
}

.moment-card.is-gold .moment-card__tag,
.home-redesign .moment-card.is-gold:hover .moment-card__tag {
    background: #1d355e;
}

@media screen and (max-width: 767px) {

    .home-hero.carousel,
    .home-hero__slides,
    .home-hero__slide {
        min-height: calc(100svh - var(--header-height) - 172px);
        max-height: none;
    }

    .home-hero__content {
        width: 100%;
        padding: 22px;
    }
}

/* Slider: photo reference */
.home-hero.carousel,
.home-hero__slides,
.home-hero__slide {
    min-height: calc(100vh - var(--header-height) - 86px);
    max-height: calc(100vh - var(--header-height) - 86px);
}

.home-hero__slide {
    position: relative;
    isolation: isolate;
    background-color: #777;
    background-image: var(--hero-image);
    background-position: center;
    background-size: cover;
    overflow: hidden;
    filter: brightness(1.1) contrast(1.05) saturate(1.1);
}

.home-hero__slide::before {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .25) 0%, rgba(0, 0, 0, .12) 44%, rgba(0, 0, 0, .05) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, .10) 0%, rgba(0, 0, 0, .02) 58%, rgba(0, 0, 0, .05) 100%);
}

.home-hero__slide .container {
    position: relative;
    z-index: 5;
}

.home-hero__content {
    width: min(560px, calc(100% - 40px));
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.home-hero__content h1,
.home-hero__content p {
    color: #fff;
    text-shadow: 0 4px 18px rgba(0, 0, 0, .88), 0 1px 2px rgba(0, 0, 0, .8);
}

.home-hero__content h1 {
    font-size: clamp(36px, 4.2vw, 56px);
}

.home-hero__content p {
    font-size: clamp(14px, 1.05vw, 16px);
    font-weight: 600;
}

.home-hero__control,
.home-hero .carousel-control-prev,
.home-hero .carousel-control-next {
    display: none !important;
}

.home-stats {
    z-index: 6;
}

@media screen and (max-width: 767px) {

    .home-hero.carousel,
    .home-hero__slides,
    .home-hero__slide {
        min-height: calc(100svh - var(--header-height) - 172px);
        max-height: none;
    }

    .home-hero__content {
        width: 100%;
    }
}

/* Homepage presentation polish */
.home-hero__slide {
    background-image: none;
    filter: none;
}

.home-hero.carousel .carousel-inner .home-hero__slide {
    background-image: none;
    filter: none;
}

.home-hero.carousel .carousel-inner .home-hero__slide::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: var(--hero-image);
    background-position: center;
    background-size: cover;
    filter: brightness(1.08) contrast(1.05) saturate(1.1);
    transform: scale(1.04);
    transform-origin: center center;
    will-change: transform;
}

.home-hero.carousel .carousel-inner .home-hero__slide.active::after {
    animation: homeHeroZoomIn 9s ease-out both;
}

@keyframes homeHeroZoomIn {
    from {
        transform: scale(1.04);
    }

    to {
        transform: scale(1.16);
    }
}

.home-hero.carousel .carousel-inner .home-hero__slide::before {
    z-index: 1;
    background:
        radial-gradient(circle at 22% 48%, rgba(207, 161, 92, .28) 0%, rgba(207, 161, 92, 0) 32%),
        linear-gradient(90deg, rgba(0, 0, 0, .74) 0%, rgba(0, 0, 0, .36) 46%, rgba(0, 0, 0, .12) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, .48) 0%, rgba(0, 0, 0, .08) 54%, rgba(0, 0, 0, .30) 100%);
}

.home-hero.carousel .carousel-inner .home-hero__slide.active .home-hero__content {
    animation: homeHeroCopyIn .72s ease-out both;
}

@keyframes homeHeroCopyIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

.home-section--compact {
    position: relative;
    overflow: hidden;
    padding: 74px 0 78px;
    background:
        linear-gradient(180deg, #fff 0%, #f8f8f8 100%);
}

.home-section--compact .home-section__head h2,
.home-day .home-section__head h2 {
    letter-spacing: 0;
}

.discover-grid {
    gap: 22px;
}

.discover-card {
    position: relative;
    overflow: hidden;
    border: 0;
    border-radius: 8px;
    background: #0c0c0c;
    box-shadow: 0 22px 42px rgba(0, 0, 0, .12);
    transition: transform .35s ease, box-shadow .35s ease;
}

.discover-card::before {
    content: "";
    position: absolute;
    inset: 10px;
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, .28);
    opacity: 0;
    pointer-events: none;
    transform: scale(.96);
    transition: opacity .35s ease, transform .35s ease;
}

.discover-card__image {
    position: relative;
    aspect-ratio: 1 / 1.28;
    background: #111;
}

.discover-card__image::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .02) 0%, rgba(0, 0, 0, .18) 38%, rgba(0, 0, 0, .88) 100%),
        linear-gradient(45deg, rgba(207, 161, 92, .20), rgba(228, 35, 29, .04));
    transition: opacity .35s ease;
}

.discover-card__image::after {
    content: "";
    position: absolute;
    top: -40%;
    left: -80%;
    z-index: 2;
    width: 70%;
    height: 180%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .18), rgba(255, 255, 255, 0));
    transform: rotate(18deg);
    transition: left .7s ease;
}

.discover-card__image img {
    transform: scale(1.01);
    transition: transform .7s ease, filter .7s ease;
}

.discover-card__overlay {
    position: absolute;
    inset: auto 0 0;
    z-index: 4;
    display: flex;
    min-height: 58%;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px 18px 18px;
    color: #fff;
}

.discover-card__period {
    width: fit-content;
    margin-bottom: 10px;
    padding: 5px 9px;
    color: #111;
    background: var(--home-gold);
    border-radius: 4px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.discover-card__name {
    margin-bottom: 7px;
    font-size: 19px;
    font-weight: 900;
    line-height: 1.08;
    text-shadow: 0 8px 18px rgba(0, 0, 0, .48);
}

.discover-card__profession {
    color: rgba(255, 255, 255, .78);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
}

.discover-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-height: 0;
    margin-top: 0;
    overflow: hidden;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(8px);
    transition: max-height .35s ease, margin-top .35s ease, opacity .35s ease, transform .35s ease;
}

.discover-card__body {
    min-height: 104px;
    padding: 15px 16px 17px;
    color: #111;
    background: #fff;
}

.discover-card h3 {
    font-size: 15px;
}

.discover-card strong {
    color: var(--home-gold-dark);
}

.discover-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 62px rgba(0, 0, 0, .20);
}

.discover-card:hover::before {
    opacity: 1;
    transform: scale(1);
}

.discover-card:hover .discover-card__image::after {
    left: 115%;
}

.discover-card:hover img {
    filter: saturate(1.12) contrast(1.05);
    transform: scale(1.12);
}

.discover-card:hover .discover-card__cta {
    max-height: 28px;
    margin-top: 13px;
    opacity: 1;
    transform: translateY(0);
}

.home-day {
    position: relative;
    background:
        linear-gradient(135deg, #101010 0%, #191919 52%, #0b0b0b 100%);
    color: #fff;
}

.home-day .home-section__head h2 {
    color: #fff;
}

.home-day .home-section__head span {
    background: var(--home-gold);
}

.day-layout {
    grid-template-columns: minmax(0, 1.36fr) minmax(190px, .42fr) minmax(0, .84fr);
    align-items: stretch;
    gap: 18px;
}

.day-feature {
    min-height: 430px;
    color: #fff;
    background: #080808;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .24);
}

.day-feature__text {
    padding: 38px;
}

.day-kicker {
    color: var(--home-gold);
}

.day-feature__date {
    display: block;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    font-weight: 800;
}

.day-feature h3 {
    color: #fff;
    font-size: clamp(24px, 2.35vw, 36px);
}

.day-feature p {
    color: rgba(255, 255, 255, .80);
    font-size: 14px;
}

.day-feature .home-link {
    color: #fff !important;
}

.day-feature__image {
    position: relative;
    min-height: 430px;
    overflow: hidden;
}

.day-feature__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 8, 8, .42), rgba(8, 8, 8, 0) 45%);
    pointer-events: none;
}

.day-feature__image img {
    transition: transform .75s ease, filter .75s ease;
}

.day-feature:hover .day-feature__image img {
    filter: saturate(1.08) contrast(1.05);
    transform: scale(1.07);
}

.day-date-card {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    border: 1px solid rgba(207, 161, 92, .38);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(207, 161, 92, .20), rgba(207, 161, 92, .04)),
        #050505;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .05);
}

.day-date-card::before {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(207, 161, 92, .35);
    pointer-events: none;
}

.day-date-card strong {
    color: #fff;
    text-shadow: 0 14px 28px rgba(0, 0, 0, .42);
}

.day-list {
    min-height: 430px;
    padding: 30px 32px;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    backdrop-filter: blur(6px);
}

.day-list h3 {
    color: #fff;
}

.day-list__item {
    border-color: rgba(255, 255, 255, .13);
    transition: transform .25s ease, border-color .25s ease;
}

.day-list__item strong,
.day-list__item span {
    color: #fff;
}

.day-list__item strong {
    display: block;
    margin-bottom: 5px;
    color: var(--home-gold);
    font-size: 12px;
}

.day-list__item span {
    color: rgba(255, 255, 255, .84);
    font-size: 14px;
}

.day-list__item:hover {
    transform: translateX(6px);
    border-color: rgba(207, 161, 92, .55);
}

.home-day .home-link,
.home-day .home-link--right {
    color: #fff !important;
}

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

    .home-hero.carousel .carousel-inner .home-hero__slide.active::after,
    .home-hero.carousel .carousel-inner .home-hero__slide.active .home-hero__content {
        animation: none;
    }

    .discover-card,
    .discover-card *,
    .day-feature__image img,
    .day-list__item {
        transition: none;
    }
}

@media screen and (max-width: 1199px) {
    .day-layout {
        grid-template-columns: 1fr;
    }

    .day-date-card {
        min-height: auto;
    }
}

@media screen and (max-width: 767px) {
    .home-section--compact {
        padding: 42px 0 52px;
    }

    .discover-grid {
        gap: 14px;
    }

    .discover-card__image {
        height: auto;
        aspect-ratio: 1 / 1.22;
    }

    .discover-card__overlay {
        padding: 16px 14px 14px;
    }

    .discover-card__name {
        font-size: 15px;
    }

    .discover-card__profession,
    .discover-card__cta {
        display: none;
    }

    .discover-card__body {
        min-height: 92px;
        padding: 12px;
    }

    .day-feature {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .day-feature__text {
        padding: 24px;
    }

    .day-feature__image,
    .day-date-card,
    .day-list {
        min-height: auto;
    }

    .day-date-card {
        padding: 28px 22px;
    }
}

/* Homepage: selected archive and current highlights */
.home-stats+.home-section {
    position: relative;
    overflow: hidden;
    padding: 82px 0 86px;
    background:
        linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
}

.home-stats+.home-section .home-section__head {
    margin-bottom: 38px;
}

.home-stats+.home-section .home-section__head h2 {
    font-size: clamp(27px, 3vw, 42px);
    letter-spacing: 0;
}

.home-stats+.home-section .home-section__head span {
    width: 118px;
    height: 3px;
    background: linear-gradient(90deg, var(--home-gold), var(--home-red));
}

.home-stats+.home-section .moment-grid {
    grid-template-columns: minmax(0, 1.34fr) repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.home-stats+.home-section .moment-card,
.home-stats+.home-section .moment-card--featured {
    position: relative;
    display: flex;
    min-height: 360px;
    overflow: hidden;
    color: #fff;
    background: #080808;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 26px 58px rgba(0, 0, 0, .16);
    transition: transform .35s ease, box-shadow .35s ease;
}

.home-stats+.home-section .moment-card--featured {
    min-height: 420px;
}

.home-stats+.home-section .moment-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .03) 0%, rgba(0, 0, 0, .50) 46%, rgba(0, 0, 0, .90) 100%),
        linear-gradient(45deg, rgba(207, 161, 92, .30), rgba(228, 35, 29, .06) 46%, rgba(0, 0, 0, .12));
    pointer-events: none;
}

.home-stats+.home-section .moment-card::before {
    content: "";
    position: absolute;
    inset: 14px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, .24);
    opacity: .55;
    pointer-events: none;
}

.home-stats+.home-section .moment-card__image {
    position: absolute;
    inset: 0;
    min-height: 100%;
}

.home-stats+.home-section .moment-card__image img {
    filter: saturate(1.04) contrast(1.03);
    transform: scale(1.01);
    transition: transform .75s ease, filter .75s ease;
}

.home-stats+.home-section .moment-card__body {
    position: relative;
    z-index: 3;
    justify-content: flex-end;
    width: 100%;
    padding: 28px;
}

.home-stats+.home-section .moment-card__tag,
.home-redesign .home-stats+.home-section .moment-card:hover .moment-card__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-bottom: 16px;
    padding: 8px 11px;
    color: #111;
    background: #fff;
    border-radius: 4px;
    font-size: 11px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .16);
}

.home-stats+.home-section .moment-card.is-red .moment-card__tag,
.home-redesign .home-stats+.home-section .moment-card.is-red:hover .moment-card__tag {
    color: #fff;
    background: var(--home-red);
}

.home-stats+.home-section .moment-card.is-green .moment-card__tag,
.home-redesign .home-stats+.home-section .moment-card.is-green:hover .moment-card__tag {
    color: #fff;
    background: var(--home-green);
}

.home-stats+.home-section .moment-card__tag i {
    display: inline-block;
    color: inherit;
    font-size: 14px;
}

.home-stats+.home-section .moment-card h3,
.home-stats+.home-section .moment-card:not(.moment-card--featured) h3 {
    max-width: 94%;
    margin-bottom: 12px;
    color: #fff;
    font-size: clamp(21px, 2.1vw, 31px);
    line-height: 1.08;
    text-shadow: 0 12px 30px rgba(0, 0, 0, .48);
}

.home-stats+.home-section .moment-card:not(.moment-card--featured) h3 {
    font-size: clamp(19px, 1.55vw, 24px);
}

.home-stats+.home-section .moment-card p {
    max-width: 92%;
    color: rgba(255, 255, 255, .84);
    font-size: 13px;
}

.home-stats+.home-section .moment-card .home-link {
    color: #fff !important;
}

.home-stats+.home-section .moment-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 34px 72px rgba(0, 0, 0, .22);
}

.home-stats+.home-section .moment-card:hover .moment-card__image img {
    filter: saturate(1.13) contrast(1.07);
    transform: scale(1.09);
}

.day-feature {
    grid-template-columns: minmax(0, 62%) minmax(260px, 38%);
}

.day-feature__text {
    padding: clamp(42px, 4vw, 62px);
}

.day-feature h3 {
    max-width: 780px;
    font-size: clamp(30px, 3.3vw, 48px);
    line-height: 1.04;
}

.day-feature p {
    max-width: 660px;
    font-size: 15px;
    line-height: 1.65;
}

.day-feature__image {
    min-height: 430px;
}

@media screen and (max-width: 1199px) {
    .home-stats+.home-section .moment-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 767px) {
    .home-stats+.home-section {
        padding: 44px 0 52px;
    }

    .home-stats+.home-section .moment-card,
    .home-stats+.home-section .moment-card--featured {
        min-height: 330px;
    }

    .home-stats+.home-section .moment-card__body {
        padding: 24px;
    }

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

    .day-feature h3 {
        font-size: clamp(25px, 8vw, 34px);
    }
}

/* Homepage requested sections only */
.home-redesign .home-section__see-all {
    margin-left: auto;
    color: #07111f !important;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.home-redesign .home-section__see-all i {
    margin-left: 6px;
}

.home-now,
.home-redesign .home-stats+.home-now {
    padding: 48px 0 38px;
    background: #fff;
}

.home-now .home-section__head {
    margin-bottom: 20px;
}

.home-now .home-section__head h2,
.home-univers .home-section__head h2,
.home-collections .home-section__head h2 {
    font-size: 22px;
    letter-spacing: 0;
}

.home-now .home-section__head span,
.home-univers .home-section__head span,
.home-collections .home-section__head span {
    flex: 1;
    width: auto;
    height: 1px;
    background: #d9dee7;
}

.home-now .moment-grid,
.home-redesign .home-stats+.home-now .moment-grid {
    display: grid;
    grid-template-columns: 1.18fr 1fr 1fr;
    gap: 18px;
}

.home-now .moment-card,
.home-redesign .home-stats+.home-now .moment-card,
.home-now .moment-card--featured,
.home-redesign .home-stats+.home-now .moment-card--featured {
    position: relative;
    display: grid;
    grid-template-columns: 46% 54%;
    min-height: 220px;
    overflow: hidden;
    color: #111;
    background: #fff;
    border: 1px solid #dfe3ea;
    border-radius: 7px;
    box-shadow: 0 12px 28px rgba(7, 17, 31, .08);
    transition: transform .28s ease, box-shadow .28s ease;
}

.home-now .moment-card--featured,
.home-redesign .home-stats+.home-now .moment-card--featured {
    min-height: 220px;
    color: #fff;
    background: #07111f;
    border-color: #07111f;
}

.home-now .moment-card::before,
.home-now .moment-card::after,
.home-redesign .home-stats+.home-now .moment-card::before,
.home-redesign .home-stats+.home-now .moment-card::after {
    display: none;
}

.home-now .moment-card__image,
.home-redesign .home-stats+.home-now .moment-card__image {
    position: relative;
    inset: auto;
    min-height: 220px;
    order: 1;
    overflow: hidden;
}

.home-now .moment-card__body,
.home-redesign .home-stats+.home-now .moment-card__body {
    position: relative;
    z-index: 1;
    order: 2;
    justify-content: center;
    width: auto;
    padding: 24px;
}

.home-now .moment-card:not(.moment-card--featured) .moment-card__image {
    order: 2;
}

.home-now .moment-card:not(.moment-card--featured) .moment-card__body {
    order: 1;
}

.home-now .moment-card__image img,
.home-redesign .home-stats+.home-now .moment-card__image img {
    filter: grayscale(1) contrast(1.04);
    transform: scale(1);
    transition: transform .5s ease, filter .5s ease;
}

.home-now .moment-card__tag,
.home-redesign .home-stats+.home-now .moment-card__tag,
.home-redesign .home-stats+.home-now .moment-card:hover .moment-card__tag {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 12px;
    padding: 5px 8px;
    color: #fff;
    background: #1d355e;
    border-radius: 3px;
    box-shadow: none;
    font-size: 9px;
    line-height: 1;
    letter-spacing: 0;
}

.home-now .moment-card.is-gold .moment-card__tag,
.home-redesign .home-stats+.home-now .moment-card.is-gold:hover .moment-card__tag {
    background: var(--home-gold);
}

.home-now .moment-card.is-red .moment-card__tag,
.home-redesign .home-stats+.home-now .moment-card.is-red:hover .moment-card__tag {
    background: #1d355e;
}

.home-now .moment-card.is-green .moment-card__tag,
.home-redesign .home-stats+.home-now .moment-card.is-green:hover .moment-card__tag {
    background: var(--home-green);
}

.home-now .moment-card__tag i,
.home-redesign .home-stats+.home-now .moment-card__tag i {
    display: none;
}

.home-now .moment-card h3,
.home-now .moment-card:not(.moment-card--featured) h3,
.home-redesign .home-stats+.home-now .moment-card h3,
.home-redesign .home-stats+.home-now .moment-card:not(.moment-card--featured) h3 {
    max-width: 100%;
    margin-bottom: 12px;
    color: inherit;
    font-size: clamp(18px, 1.55vw, 26px);
    line-height: 1.12;
    text-shadow: none;
}

.home-now .moment-card p,
.home-redesign .home-stats+.home-now .moment-card p {
    max-width: 100%;
    color: inherit;
    font-size: 12px;
    line-height: 1.5;
}

.home-now .moment-card:not(.moment-card--featured) p {
    color: #3c4656;
}

.home-now .moment-card .home-link,
.home-redesign .home-stats+.home-now .moment-card .home-link {
    color: inherit !important;
    font-size: 11px;
}

.home-now .moment-card:hover,
.home-redesign .home-stats+.home-now .moment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(7, 17, 31, .12);
}

.home-now .moment-card:hover .moment-card__image img,
.home-redesign .home-stats+.home-now .moment-card:hover .moment-card__image img {
    filter: grayscale(.25) contrast(1.06);
    transform: scale(1.06);
}

.home-univers {
    padding: 20px 0 38px;
    background: #fff;
}

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

.univers-card {
    display: flex;
    min-height: 106px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 10px;
    color: #07111f !important;
    text-align: center;
    background: #fff;
    border: 1px solid #dfe3ea;
    border-radius: 7px;
    box-shadow: 0 10px 24px rgba(7, 17, 31, .05);
}

.univers-card i {
    margin-bottom: 9px;
    font-size: 28px;
}

.univers-card strong {
    font-size: 12px;
    font-weight: 900;
    line-height: 1.2;
}

.univers-card span {
    margin-top: 5px;
    color: #697386;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.univers-card.is-blue i {
    color: #1d4ed8;
}

.univers-card.is-purple i {
    color: #9333ea;
}

.univers-card.is-green i {
    color: #3a9d23;
}

.univers-card.is-orange i {
    color: #d97706;
}

.univers-card.is-gold i {
    color: #b38332;
}

.univers-card.is-red i {
    color: #d0241f;
}

.univers-card.is-sand i {
    color: #c49034;
}

.univers-card.is-navy i {
    color: #0f355d;
}

.home-day {
    padding: 44px 0 48px;
    color: #07111f;
    background: #fff;
}

.home-day .home-section__head h2 {
    color: #07111f;
}

.home-day .home-section__head span {
    flex: 1;
    width: auto;
    height: 1px;
    background: #d9dee7;
}

.home-day .day-layout {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr) minmax(320px, .88fr);
    align-items: stretch;
    gap: 22px;
}

.home-day .day-date-card {
    display: flex;
    min-height: 300px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    color: #07111f;
    text-align: center;
    background: #fff;
    border: 1px solid #dfe3ea;
    border-radius: 7px;
    box-shadow: 0 12px 30px rgba(7, 17, 31, .06);
}

.home-day .day-date-card::before {
    display: none;
}

.home-day .day-date-card strong {
    color: #07111f;
    font-size: clamp(58px, 7vw, 88px);
    font-weight: 900;
    line-height: .85;
    text-shadow: none;
}

.home-day .day-date-card span {
    margin: 14px 0 20px;
    color: var(--home-gold);
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.home-day .day-date-card a {
    color: #07111f !important;
    font-size: 10px;
    font-weight: 900;
    line-height: 1.4;
    text-transform: uppercase;
}

.home-day .day-list {
    min-height: 300px;
    padding: 8px 0;
    color: #07111f;
    background: transparent;
    border: 0;
    border-radius: 0;
    backdrop-filter: none;
}

.home-day .day-list__item {
    position: relative;
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 18px;
    padding: 14px 0 14px 28px;
    border: 0;
}

.home-day .day-list__item::before {
    content: "";
    position: absolute;
    top: 23px;
    left: 4px;
    width: 9px;
    height: 9px;
    background: var(--home-gold);
    border-radius: 50%;
}

.home-day .day-list__item::after {
    content: "";
    position: absolute;
    top: 34px;
    bottom: -16px;
    left: 8px;
    width: 1px;
    background: #d9dee7;
}

.home-day .day-list__item:last-child::after {
    display: none;
}

.home-day .day-list__item strong {
    margin: 0;
    color: #07111f;
    font-size: 18px;
    font-weight: 900;
}

.home-day .day-list__item span {
    color: #1e293b;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
}

.home-day .day-list__item em {
    grid-column: 2;
    color: var(--home-gold);
    font-size: 10px;
    font-style: normal;
    font-weight: 900;
    text-transform: uppercase;
}

.home-day .day-feature {
    display: block;
    min-height: 300px;
    overflow: hidden;
    background: #111;
    border: 0;
    border-radius: 7px;
    box-shadow: 0 14px 34px rgba(7, 17, 31, .10);
}

.home-day .day-feature__image {
    display: block;
    min-height: 300px;
    height: 100%;
}

.home-day .day-feature__image::after {
    background: linear-gradient(0deg, rgba(0, 0, 0, .22), rgba(0, 0, 0, 0));
}

.home-collections {
    padding: 42px 0 34px;
    background: #fff;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.collection-card a {
    position: relative;
    display: block;
    min-height: 155px;
    overflow: hidden;
    color: #fff !important;
    background: #111;
    border-radius: 7px;
    box-shadow: 0 16px 34px rgba(7, 17, 31, .12);
}

.collection-card img {
    filter: grayscale(.45) brightness(.72);
    transition: transform .5s ease, filter .5s ease;
}

.collection-card a::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .78));
}

.collection-card span {
    position: absolute;
    right: 16px;
    bottom: 16px;
    left: 16px;
    z-index: 2;
}

.collection-card strong {
    display: block;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.12;
}

.collection-card em {
    display: block;
    margin-top: 9px;
    color: rgba(255, 255, 255, .78);
    font-size: 10px;
    font-style: normal;
    font-weight: 900;
    text-transform: uppercase;
}

.collection-card:hover img {
    filter: grayscale(.1) brightness(.82);
    transform: scale(1.06);
}

@media screen and (max-width: 1199px) {

    .home-now .moment-grid,
    .home-redesign .home-stats+.home-now .moment-grid,
    .home-day .day-layout,
    .collections-grid {
        grid-template-columns: 1fr;
    }

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

@media screen and (max-width: 767px) {
    .home-redesign .home-section__see-all {
        display: none;
    }

    .home-now .moment-card,
    .home-redesign .home-stats+.home-now .moment-card,
    .home-now .moment-card--featured,
    .home-redesign .home-stats+.home-now .moment-card--featured {
        grid-template-columns: 42% 58%;
        min-height: 190px;
    }

    .home-now .moment-card__image,
    .home-redesign .home-stats+.home-now .moment-card__image {
        min-height: 190px;
    }

    .home-now .moment-card__body,
    .home-redesign .home-stats+.home-now .moment-card__body {
        padding: 16px;
    }

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

    .home-day .day-list__item {
        grid-template-columns: 62px minmax(0, 1fr);
    }
}

/* Final motion and requested refinements */
.site-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 50% 42%, rgba(207, 161, 92, .16), rgba(207, 161, 92, 0) 34%),
        #020712;
    transition: opacity .55s ease, visibility .55s ease;
}

.site-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.site-loader__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.site-loader__inner img {
    width: min(330px, 72vw);
    height: auto;
    filter: drop-shadow(0 22px 42px rgba(0, 0, 0, .45));
    animation: loaderLogoPulse 1.35s ease-in-out infinite;
}

.site-loader__inner span {
    position: relative;
    padding-top: 18px;
    color: rgba(255, 255, 255, .82);
}

.site-loader__inner span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 86px;
    height: 3px;
    overflow: hidden;
    background: rgba(255, 255, 255, .16);
    border-radius: 999px;
    transform: translateX(-50%);
}

.site-loader__inner span::after {
    content: "";
    position: absolute;
    top: 0;
    left: calc(50% - 43px);
    width: 32px;
    height: 3px;
    background: var(--home-gold, #cfa15c);
    border-radius: 999px;
    animation: loaderBar 1s ease-in-out infinite;
}

@keyframes loaderLogoPulse {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: .92;
    }

    50% {
        transform: translateY(-4px) scale(1.035);
        opacity: 1;
    }
}

@keyframes loaderBar {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(54px);
    }

    100% {
        transform: translateX(0);
    }
}

header.sticky-top {
    transition: padding .28s ease, background-color .28s ease, box-shadow .28s ease, transform .28s ease;
}

header.sticky-top .header-logo-desktop,
header.sticky-top .logo,
header.sticky-top .navbar,
header.sticky-top .navbar .nav-link,
header.sticky-top .language-toggle {
    transition: all .28s ease;
}

header.sticky-top.is-scrolled {
    background: rgba(0, 0, 0, .92);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .22);
    backdrop-filter: blur(10px);
}

header.sticky-top.is-scrolled .header-logo-desktop {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
    opacity: 0;
}

header.sticky-top.is-scrolled .navbar {
    padding: 7px 0 !important;
    background: rgba(0, 0, 0, .72) !important;
}

header.sticky-top.is-scrolled .navbar-collapse {
    max-width: min(980px, calc(100% - 34px));
    margin: 0 auto;
    padding: 7px 16px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 999px;
}

header.sticky-top.is-scrolled .navbar .nav-item .nav-link,
header.sticky-top.is-scrolled .navbar-nav .nav-item.dropdown .nav-link {
    padding-top: 7px;
    padding-bottom: 7px;
    font-size: 12px;
}

header.sticky-top.is-scrolled .language-toggle {
    height: 24px;
    min-width: 34px;
    font-size: 11px;
}

header.sticky-top.is-scrolled .mobile-logo {
    max-height: 32px;
}

.home-now .moment-card,
.home-redesign .home-stats+.home-now .moment-card,
.home-now .moment-card--featured,
.home-redesign .home-stats+.home-now .moment-card--featured {
    min-height: 178px;
}

.home-now .moment-card--featured,
.home-redesign .home-stats+.home-now .moment-card--featured {
    min-height: 188px;
}

.home-now .moment-card__image,
.home-redesign .home-stats+.home-now .moment-card__image {
    min-height: 178px;
}

.home-now .moment-card__body,
.home-redesign .home-stats+.home-now .moment-card__body {
    padding: 18px;
}

.home-now .moment-card h3,
.home-now .moment-card:not(.moment-card--featured) h3,
.home-redesign .home-stats+.home-now .moment-card h3,
.home-redesign .home-stats+.home-now .moment-card:not(.moment-card--featured) h3 {
    margin-bottom: 9px;
    font-size: clamp(16px, 1.25vw, 21px);
}

.home-now .moment-card p,
.home-redesign .home-stats+.home-now .moment-card p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 11px;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.home-now .moment-card::selection,
.home-day .day-list__item::selection {
    background: var(--home-gold);
    color: #111;
}

.home-day .day-layout {
    grid-template-columns: 190px minmax(360px, 1fr) minmax(0, .92fr);
}

.home-day .day-date-card,
.home-day .day-feature,
.home-day .day-list {
    min-height: 278px;
}

.home-day .day-feature__image {
    min-height: 278px;
}

.home-day .day-feature {
    position: relative;
    isolation: isolate;
}

.home-day .day-feature::before {
    content: "";
    position: absolute;
    inset: 12px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, .20);
    pointer-events: none;
}

.home-day .day-feature img {
    filter: grayscale(.85) contrast(1.08);
}

.home-day .day-feature:hover img {
    filter: grayscale(.15) contrast(1.08);
    transform: scale(1.055);
}

.home-day .day-list__item {
    transition: transform .24s ease, background-color .24s ease;
}

.home-day .day-list__item:hover {
    background: linear-gradient(90deg, rgba(207, 161, 92, .10), rgba(207, 161, 92, 0));
    transform: translateX(5px);
}

.univers-card,
.collection-card a,
.discover-card {
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.univers-card:hover {
    border-color: rgba(207, 161, 92, .55);
    box-shadow: 0 16px 34px rgba(7, 17, 31, .10);
    transform: translateY(-5px);
}

.home-section__see-all:hover i,
.home-link:hover i,
.day-list__item:hover i {
    animation: arrowNudge .55s ease-in-out infinite;
}

@keyframes arrowNudge {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(4px);
    }
}

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

    .site-loader__inner img,
    .site-loader__inner span::after,
    .home-section__see-all:hover i,
    .home-link:hover i,
    .day-list__item:hover i {
        animation: none;
    }

    header.sticky-top,
    header.sticky-top *,
    .home-day .day-list__item,
    .univers-card,
    .collection-card a,
    .discover-card {
        transition: none;
    }
}

@media screen and (max-width: 991px) {
    header.sticky-top.is-scrolled .navbar-collapse {
        max-width: none;
        margin: 0;
        padding: 0;
        background: transparent;
        border: 0;
        border-radius: 0;
    }
}

@media screen and (max-width: 1199px) {
    .home-day .day-layout {
        grid-template-columns: 170px minmax(0, 1fr);
    }

    .home-day .day-list {
        grid-column: 1 / -1;
    }
}

@media screen and (max-width: 767px) {

    .home-now .moment-card,
    .home-redesign .home-stats+.home-now .moment-card,
    .home-now .moment-card--featured,
    .home-redesign .home-stats+.home-now .moment-card--featured {
        min-height: 164px;
    }

    .home-now .moment-card__image,
    .home-redesign .home-stats+.home-now .moment-card__image {
        min-height: 164px;
    }

    .home-day .day-layout {
        grid-template-columns: 1fr;
    }
}

/* Header scroll logo and mobile content refinements */
header .scroll-logo-link {
    position: absolute;
    left: clamp(18px, 3vw, 46px);
    top: 50%;
    z-index: 5;
    align-items: center;
    width: 0;
    max-width: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%) translateX(-10px);
    transition: max-width .28s ease, width .28s ease, opacity .28s ease, transform .28s ease;
}

header .scroll-logo {
    width: 158px;
    height: auto;
    object-fit: contain;
}

header.sticky-top.is-scrolled .scroll-logo-link {
    width: 158px;
    max-width: 158px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-50%) translateX(0);
}

header.sticky-top.is-scrolled .navbar .container-fluid {
    position: relative;
    min-height: 46px;
}

header.sticky-top.is-scrolled .navbar-collapse {
    margin-right: auto;
    margin-left: clamp(188px, 18vw, 250px);
}

@media screen and (max-width: 1199px) and (min-width: 992px) {
    header .scroll-logo {
        width: 132px;
    }

    header.sticky-top.is-scrolled .scroll-logo-link {
        width: 132px;
        max-width: 132px;
    }

    header.sticky-top.is-scrolled .navbar-collapse {
        margin-left: 154px;
    }
}

@media screen and (max-width: 768px) {

    .home-now .moment-grid,
    .home-redesign .home-stats+.home-now .moment-grid {
        display: flex;
        gap: 14px;
        margin-right: -18px;
        padding: 2px 18px 14px 0;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-padding-left: 0;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .home-now .moment-grid::-webkit-scrollbar,
    .home-redesign .home-stats+.home-now .moment-grid::-webkit-scrollbar {
        height: 4px;
    }

    .home-now .moment-grid::-webkit-scrollbar-thumb,
    .home-redesign .home-stats+.home-now .moment-grid::-webkit-scrollbar-thumb {
        background: rgba(207, 161, 92, .65);
        border-radius: 999px;
    }

    .home-now .moment-card,
    .home-redesign .home-stats+.home-now .moment-card,
    .home-now .moment-card--featured,
    .home-redesign .home-stats+.home-now .moment-card--featured {
        flex: 0 0 min(86vw, 360px);
        grid-template-columns: 43% 57%;
        scroll-snap-align: start;
    }

    .discover-grid .discover-card:nth-child(n+7) {
        display: none;
    }
}

/* Chronology page */
.chronology-page {
    color: #07111f;
    background: #f6f7fa;
}

.chronology-hero {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background: #030914;
    isolation: isolate;
}

.chronology-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: var(--chronology-hero-image);
    background-position: center;
    background-size: cover;
    filter: grayscale(.25) brightness(.72) contrast(1.08);
    transform: scale(1.04);
}

.chronology-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(2, 7, 18, .92) 0%, rgba(2, 7, 18, .58) 48%, rgba(2, 7, 18, .22) 100%),
        linear-gradient(0deg, rgba(2, 7, 18, .62), rgba(2, 7, 18, .10));
}

.chronology-breadcrumb {
    position: absolute;
    top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 13px;
    color: rgba(255, 255, 255, .78);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

.chronology-breadcrumb a {
    color: #fff !important;
}

.chronology-breadcrumb span::before {
    content: "/";
    margin-right: 10px;
    color: var(--home-gold, #cfa15c);
}

.chronology-hero__content {
    width: min(620px, 100%);
    padding: 86px 0 34px;
}

.chronology-hero__content>span {
    color: var(--home-gold, #cfa15c);
    font-size: 18px;
    font-weight: 900;
}

.chronology-hero__content h1 {
    margin: 10px 0 10px;
    color: #fff;
    font-size: clamp(42px, 5.2vw, 72px);
    font-weight: 900;
    line-height: .95;
    text-transform: uppercase;
}

.chronology-hero__content p {
    max-width: 560px;
    margin: 0;
    color: rgba(255, 255, 255, .88);
    font-size: 16px;
    line-height: 1.55;
}

.chronology-stats {
    display: grid;
    width: min(760px, 100%);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 30px;
    overflow: hidden;
    background: rgba(255, 255, 255, .09);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 10px;
    backdrop-filter: blur(8px);
}

.chronology-stats div {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 3px 10px;
    padding: 18px;
    border-right: 1px solid rgba(255, 255, 255, .14);
}

.chronology-stats div:last-child {
    border-right: 0;
}

.chronology-stats i {
    grid-row: 1 / span 2;
    color: var(--home-gold, #cfa15c);
    font-size: 26px;
}

.chronology-stats strong {
    color: var(--home-gold, #cfa15c);
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
}

.chronology-stats span {
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.chronology-body {
    padding: 34px 0 64px;
}

.chronology-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(340px, .72fr);
    gap: 28px;
}

.chronology-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    overflow-x: auto;
}

.chronology-tabs button {
    min-height: 42px;
    padding: 0 18px;
    color: #07111f;
    background: #fff;
    border: 1px solid #dfe3ea;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
}

.chronology-tabs button.active {
    color: #fff;
    background: #07111f;
    border-color: #07111f;
}

.chronology-list {
    overflow: hidden;
    background: #fff;
    border: 1px solid #dfe3ea;
    border-radius: 10px;
}

.chronology-card {
    position: relative;
    display: grid;
    grid-template-columns: 112px 260px minmax(0, 1fr) 70px;
    align-items: center;
    gap: 18px;
    min-height: 128px;
    padding: 16px 22px 16px 0;
    border-bottom: 1px solid #e5e8ef;
}

.chronology-card:last-child {
    border-bottom: 0;
}

.chronology-card__date {
    display: flex;
    min-height: 96px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #e5e8ef;
}

.chronology-card__date strong {
    color: var(--home-gold, #cfa15c);
    font-size: 36px;
    font-weight: 900;
    line-height: .9;
}

.chronology-card__date span,
.chronology-card__date em {
    color: #07111f;
    font-size: 12px;
    font-style: normal;
    font-weight: 900;
    text-transform: uppercase;
}

.chronology-card__image {
    display: block;
    height: 96px;
    overflow: hidden;
    background: #111;
    border-radius: 7px;
}

.chronology-card__image img {
    filter: grayscale(.55) contrast(1.05);
    transition: transform .4s ease, filter .4s ease;
}

.chronology-card:hover .chronology-card__image img {
    filter: grayscale(.08) contrast(1.05);
    transform: scale(1.05);
}

.chronology-card__tag {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 8px;
    padding: 5px 8px;
    color: #123;
    background: #dbeafe;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.chronology-card__tag.is-birth {
    color: #14532d;
    background: #dcfce7;
}

.chronology-card__tag.is-death {
    color: #7f1d1d;
    background: #fee2e2;
}

.chronology-card__content h2 {
    margin: 0 0 7px;
    color: #07111f;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.15;
}

.chronology-card__content p {
    margin: 0;
    color: #465365;
    font-size: 13px;
    line-height: 1.45;
}

.chronology-card__link {
    color: var(--home-gold, #cfa15c) !important;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.chronology-sidebar {
    display: grid;
    gap: 16px;
    align-content: start;
}

.chronology-side-card,
.chronology-contribute {
    padding: 20px;
    background: #fff;
    border: 1px solid #dfe3ea;
    border-radius: 10px;
    box-shadow: 0 16px 38px rgba(7, 17, 31, .06);
}

.chronology-side-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
}

.chronology-side-card__head strong {
    color: #07111f;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.chronology-side-card__head a,
.chronology-side-card__head span {
    color: #07111f !important;
    font-size: 11px;
    font-weight: 900;
}

.chronology-calendar__date {
    display: grid;
    place-items: center;
    min-height: 150px;
    color: #07111f;
    background: #f7f8fb;
    border-radius: 8px;
}

.chronology-calendar__date strong {
    color: var(--home-gold, #cfa15c);
    font-size: 74px;
    font-weight: 900;
    line-height: .9;
}

.chronology-calendar__date span {
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
}

.chronology-theme-grid,
.chronology-periods div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.chronology-theme-grid span,
.chronology-periods span {
    padding: 13px 10px;
    color: #07111f;
    background: #f7f8fb;
    border: 1px solid #e5e8ef;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 800;
    text-align: center;
}

.chronology-contribute {
    color: #fff;
    background:
        linear-gradient(135deg, rgba(7, 17, 31, .98), rgba(4, 12, 26, .92));
    border-color: #07111f;
}

.chronology-contribute strong {
    display: block;
    margin-bottom: 9px;
    color: #fff;
    font-size: 17px;
    font-weight: 900;
    text-transform: uppercase;
}

.chronology-contribute p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
}

.chronology-contribute a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 15px;
    color: #111 !important;
    background: var(--home-gold, #cfa15c);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

@media screen and (max-width: 1199px) {
    .chronology-shell {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 767px) {
    .chronology-hero {
        min-height: 430px;
    }

    .chronology-hero__content {
        padding-top: 96px;
    }

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

    .chronology-stats div:nth-child(2) {
        border-right: 0;
    }

    .chronology-card {
        grid-template-columns: 76px minmax(0, 1fr);
        gap: 14px;
        padding: 14px;
    }

    .chronology-card__date {
        grid-row: 1 / span 2;
        min-height: 100%;
    }

    .chronology-card__image {
        height: 150px;
    }

    .chronology-card__link {
        grid-column: 2;
    }

    .chronology-card__content h2 {
        font-size: 18px;
    }

    .chronology-theme-grid,
    .chronology-periods div {
        grid-template-columns: 1fr;
    }
}

/* Newsletter modal redesign and centered scrolled menu */
.chronology-hero__content {
    padding-bottom: 52px;
}

.chronology-breadcrumb {
    width: fit-content;
    max-width: 260px;
    padding: 7px 11px;
    border-radius: 5px;
}

.chronology-stats--body {
    width: 100%;
    margin: 0 0 24px;
    color: #07111f;
    background: #fff;
    border: 1px solid #dfe3ea;
    box-shadow: 0 12px 26px rgba(7, 17, 31, .05);
}

.chronology-stats--body div {
    border-color: #e5e8ef;
}

.chronology-stats--body span {
    color: #465365;
}

.chronology-date-filter {
    margin: 0 0 12px;
    padding: 9px 12px;
    color: #07111f;
    background: #fff8e9;
    border: 1px solid #e6c77f;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 800;
}

.chronology-calendar__nav {
    padding: 2px 5px;
    color: #07111f;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.chronology-calendar__month {
    display: block;
    margin: -4px 0 14px;
    color: #07111f;
    font-size: 16px;
    text-align: center;
    text-transform: capitalize;
}

.chronology-calendar__grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 4px;
}

.chronology-calendar__grid button,
.chronology-calendar__grid span {
    display: grid;
    min-height: 30px;
    place-items: center;
    color: #07111f;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 50%;
    font-size: 11px;
}

.chronology-calendar__grid button {
    cursor: pointer;
}

.chronology-calendar__grid button:hover,
.chronology-calendar__grid button.is-selected {
    color: #fff;
    background: var(--home-gold, #cfa15c);
}

.chronology-calendar__grid button.has-events:not(.is-selected) {
    border-color: var(--home-gold, #cfa15c);
    font-weight: 900;
}

.chronology-calendar__grid button.is-muted {
    color: #aab1bc;
}

.chronology-calendar__weekdays {
    margin-bottom: 5px;
}

.chronology-calendar__weekdays span {
    min-height: 20px;
    color: #7a8492;
    border-radius: 0;
    font-size: 9px;
    font-weight: 900;
}

.chronology-theme-grid button {
    padding: 13px 10px;
    color: #07111f;
    background: #f7f8fb;
    border: 1px solid #e5e8ef;
    border-radius: 7px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 800;
}

.chronology-theme-grid button:hover {
    border-color: var(--home-gold, #cfa15c);
}

@media screen and (max-width: 767px) {
    .chronology-stats--body {
        margin-top: 0;
    }
}

/* Newsletter modal redesign and centered scrolled menu */
.overlay-search-input.newsletter {
    background:
        radial-gradient(circle at 24% 18%, rgba(207, 161, 92, .18), transparent 32%),
        rgba(2, 7, 18, .86);
    backdrop-filter: blur(8px);
}

.overlay-search-input.newsletter.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.newsletter-modal-wrap {
    display: flex;
    width: min(980px, 100%);
    max-height: min(760px, calc(100vh - 48px));
    margin: auto;
}

.overlay-search-input.newsletter .newsletter-border {
    display: grid;
    grid-template-columns: .82fr 1fr;
    width: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(207, 161, 92, .28);
    border-radius: 18px;
    box-shadow: 0 34px 90px rgba(0, 0, 0, .42);
}

.newsletter-modal__visual {
    position: relative;
    display: flex;
    min-height: 520px;
    flex-direction: column;
    justify-content: flex-end;
    padding: 42px;
    color: #fff;
    background:
        linear-gradient(180deg, rgba(2, 7, 18, .15), rgba(2, 7, 18, .92)),
        url('../images/car-1.jpg') center/cover;
}

.newsletter-modal__visual::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, .20);
    pointer-events: none;
}

.newsletter-modal__visual img {
    position: absolute;
    top: 34px;
    left: 38px;
    width: 210px;
    height: auto;
    object-fit: contain;
}

.newsletter-modal__visual span,
.newsletter-modal__head span {
    color: var(--home-gold, #cfa15c);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.newsletter-modal__visual h2 {
    position: relative;
    z-index: 1;
    margin: 14px 0 14px;
    max-width: 340px;
    color: #fff;
    font-size: clamp(32px, 3.2vw, 48px);
    font-weight: 900;
    line-height: 1;
}

.newsletter-modal__visual p {
    position: relative;
    z-index: 1;
    max-width: 330px;
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
    line-height: 1.55;
}

.newsletter-modal__form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    padding: clamp(28px, 4vw, 54px);
    color: #07111f;
}

.newsletter-modal__head h3 {
    margin: 8px 0 8px;
    color: #07111f;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 900;
    line-height: 1;
}

.newsletter-modal__head p {
    margin: 0;
    color: #697386;
    font-size: 14px;
}

.newsletter-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.newsletter-fields label {
    color: #07111f;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.newsletter-fields .form-control {
    min-height: 52px;
    margin-top: 8px;
    padding: 0 16px;
    color: #07111f;
    background: #f7f8fb;
    border: 1px solid #dfe3ea;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.newsletter-fields .form-control:focus {
    background: #fff;
    border-color: var(--home-gold, #cfa15c);
    box-shadow: 0 0 0 4px rgba(207, 161, 92, .14);
}

.newsletter-preferences>strong {
    display: block;
    margin-bottom: 12px;
    color: #07111f;
    font-size: 13px;
    font-weight: 900;
}

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

.newsletter-option {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 48px;
    padding: 12px;
    color: #243044;
    background: #f7f8fb;
    border: 1px solid #dfe3ea;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

.newsletter-option--wide {
    grid-column: 1 / -1;
}

.newsletter-option .form-check-input {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    margin: 0;
    border: 1px solid rgba(207, 161, 92, .7);
}

.newsletter-option .form-check-input:checked {
    background-color: var(--home-gold, #cfa15c);
    border-color: var(--home-gold, #cfa15c);
}

.overlay-search-input.newsletter .submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    min-height: 52px;
    padding: 0 28px;
    color: #111 !important;
    background: var(--home-gold, #cfa15c);
    border: 0;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.overlay-search-input.newsletter .close-search {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #fff;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
}

header.sticky-top.is-scrolled .navbar .container-fluid {
    justify-content: center;
    gap: 18px;
}

header.sticky-top.is-scrolled .scroll-logo-link {
    position: relative;
    top: auto;
    left: auto;
    flex: 0 0 142px;
    width: 142px;
    max-width: 142px;
    transform: none;
}

header.sticky-top.is-scrolled .scroll-logo {
    width: 142px;
}

header.sticky-top.is-scrolled .navbar-collapse {
    flex: 0 1 auto;
    margin-right: 0;
    margin-left: 0;
}

header.sticky-top.is-scrolled .navbar-nav {
    justify-content: center;
}

@media screen and (max-width: 1199px) and (min-width: 992px) {
    header.sticky-top.is-scrolled .scroll-logo-link {
        flex-basis: 120px;
        width: 120px;
        max-width: 120px;
    }

    header.sticky-top.is-scrolled .scroll-logo {
        width: 120px;
    }
}

@media screen and (max-width: 768px) {
    .overlay-search-input.newsletter.active {
        align-items: center;
        padding: 16px;
    }

    .newsletter-modal-wrap {
        max-height: calc(100dvh - 32px);
        overflow-y: auto;
    }

    .overlay-search-input.newsletter .newsletter-border {
        grid-template-columns: 1fr;
        border-radius: 14px;
    }

    .newsletter-modal__visual {
        min-height: 190px;
        padding: 76px 22px 22px;
    }

    .newsletter-modal__visual::before {
        inset: 12px;
    }

    .newsletter-modal__visual img {
        top: 22px;
        left: 22px;
        width: 170px;
    }

    .newsletter-modal__visual h2 {
        max-width: 100%;
        margin-bottom: 8px;
        font-size: 27px;
    }

    .newsletter-modal__visual p {
        max-width: 100%;
        font-size: 13px;
    }

    .newsletter-modal__form {
        gap: 18px;
        padding: 24px 20px 22px;
    }

    .newsletter-fields,
    .newsletter-options {
        grid-template-columns: 1fr;
    }

    .overlay-search-input.newsletter .submit-btn {
        width: 100%;
    }

    .overlay-search-input.newsletter.active .close-search {
        top: 12px;
        right: 12px;
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
}

/* Chronology timeline refinement */
.chronology-hero {
    min-height: 174px;
    background: #07111f;
}

.chronology-hero::before {
    display: none;
}

.chronology-hero::after {
    background: linear-gradient(110deg, rgba(7, 17, 31, .98), rgba(7, 17, 31, .88));
}

.chronology-hero__content {
    width: min(620px, 100%);
    padding: 28px 0 24px;
}

.chronology-hero__content h1 {
    margin: 0 0 7px;
    font-size: clamp(32px, 3.2vw, 42px);
    line-height: 1;
}

.chronology-hero__content p {
    max-width: 520px;
    font-size: 13px;
    line-height: 1.4;
}

.chronology-breadcrumb {
    top: 18px;
    padding: 4px 8px;
    background: rgba(2, 7, 18, .38);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 3px;
    font-size: 10px;
}

.chronology-shell {
    grid-template-columns: minmax(0, 5fr) minmax(250px, 1fr);
    gap: 24px;
}

.chronology-list {
    position: relative;
    overflow: visible;
    padding: 10px 0;
    background: transparent;
    border: 0;
    border-radius: 0;
}

.chronology-list::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 104px;
    width: 2px;
    content: "";
    background: linear-gradient(#cfa15c, #dfe3ea 12%, #dfe3ea 88%, #cfa15c);
}

.chronology-card {
    grid-template-columns: 104px 220px minmax(0, 1fr) 58px;
    min-height: 122px;
    margin-bottom: 14px;
    padding: 12px 16px 12px 0;
    background: #fff;
    border: 1px solid #e1e5eb;
    border-radius: 7px;
    box-shadow: 0 8px 20px rgba(7, 17, 31, .045);
}

.chronology-card:last-child {
    border-bottom: 1px solid #e1e5eb;
}

.chronology-card::before {
    position: absolute;
    top: 50%;
    left: 97px;
    z-index: 2;
    width: 15px;
    height: 15px;
    content: "";
    background: #fff;
    border: 4px solid var(--home-gold, #cfa15c);
    border-radius: 50%;
    box-shadow: 0 0 0 4px #f6f7fa;
    transform: translate(-50%, -50%);
}

.chronology-card__date {
    position: relative;
    z-index: 3;
    min-height: 96px;
    padding-right: 18px;
    background: #fff;
    border-right: 0;
}

.chronology-card__image {
    height: 96px;
}

.chronology-card__placeholder {
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #fff;
    background: linear-gradient(135deg, #263547, #526274);
    text-align: center;
}

.chronology-card__placeholder i {
    color: var(--home-gold, #cfa15c);
    font-size: 24px;
}

.chronology-card__placeholder strong {
    max-width: 90%;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.chronology-card__placeholder small {
    color: rgba(255, 255, 255, .7);
    font-size: 9px;
}

.chronology-sidebar {
    position: sticky;
    top: 24px;
    align-self: start;
}

.chronology-sidebar .chronology-calendar {
    box-shadow: 0 14px 30px rgba(7, 17, 31, .08);
}

@media screen and (max-width: 1199px) {
    .chronology-shell {
        grid-template-columns: minmax(0, 4fr) minmax(250px, 1fr);
    }

    .chronology-card {
        grid-template-columns: 92px 175px minmax(0, 1fr) 48px;
    }

    .chronology-list::before {
        left: 92px;
    }

    .chronology-card::before {
        left: 85px;
    }
}

@media screen and (max-width: 767px) {
    .chronology-hero {
        min-height: 158px;
    }

    .chronology-hero__content {
        padding: 24px 0 20px;
    }

    .chronology-hero__content h1 {
        font-size: 30px;
    }

    .chronology-hero__content p {
        font-size: 12px;
    }

    .chronology-shell {
        grid-template-columns: 1fr;
    }

    .chronology-sidebar {
        position: static;
    }

    .chronology-list::before {
        left: 76px;
    }

    .chronology-card {
        grid-template-columns: 76px minmax(0, 1fr);
        margin-bottom: 12px;
        padding: 12px;
    }

    .chronology-card::before {
        left: 69px;
    }

    .chronology-card__date {
        padding-right: 8px;
    }
}