:root {
    --golden-color: rgb(201, 168, 76);
    --font-jet: "JetBrains Mono", sans-serif;
}

::selection {
    background: #c9a84c75;
    color: #c9a84c;
}

::-moz-selection {
    background: #c9a84c75;
    color: #c9a84c;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

.short-screen {
    padding-inline: 20px !important;
}

header.scrolled .elementor-sticky {
    background-color: #000000 !important;
}

header .elementor-nav-menu--main ul {
    counter-reset: menu-counter;
}
.single-models .stats-grid + .content-block {
    display:none;
}
.single-models .book-model-cta{
	display:none;
}
span.golden {
    color: var(--golden-color);
}

header .elementor-nav-menu--main ul>li {
    counter-increment: menu-counter;
    position: relative;
    padding-left: 0px;
}

header .e--pointer-underline .elementor-item:after {
    height: 1px;
}

header .elementor-nav-menu--main ul>li>a.elementor-item {
    padding-left: 40px !important;
}

header .elementor-nav-menu--main ul>li>a::before,
header .elementor-nav-menu--main li>a::before {
    content: "0" counter(menu-counter);
    position: absolute;
    left: 0;
    top: 52px;
    font-size: 12px;
    line-height: 1;
    font-weight: 500;
    background: transparent !important;
    opacity: 1 !important;
    color: var(--golden-color);
    font-family: var(--font-jet);
}

body .heroBanner .e-con-inner {
    width: 100%;
    max-width: 100%;
}

.gradient-heading h2 {
    background: linear-gradient(135deg, rgb(184, 134, 11) 0%, rgb(240, 208, 128) 40%, rgb(201, 168, 76) 70%, rgb(184, 134, 11) 100%) text;
    -webkit-text-fill-color: transparent;
}

.heroBanner .e-con-inner .innerSlide {
    max-width: 1600px;
    width: 100%;
    margin-inline: auto;
    height: 100%;
}

.heroBanner .e-n-carousel .swiper-wrapper {
    transition-timing-function: cubic-bezier(.22, .61, .36, 1) !important;
}

.verticalLine {
    position: relative;
    padding-bottom: 40px;
    /* Space for the line */
}

.verticalLine::after {
    content: "";
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 70px;
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(212, 175, 55, 0.4) 20%,
            #ffb90ccf 50%,
            rgba(212, 175, 55, 0.4) 80%,
            transparent 100%);
}

/* Pagination container */
body .heroBanner .swiper-pagination {
    position: absolute !important;
    top: 50% !important;
    right: 30px !important;
    left: auto !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;

    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: auto !important;
}

body .heroBanner .swiper-pagination-bullet {
    width: 2px;
    height: 18px;
    border-radius: 0;
    margin: 0 !important;
    background: rgba(255, 255, 255, .4);
    opacity: 1;
}

body .heroBanner .swiper-pagination-bullet-active {
    height: 40px;
    background: #c9a24a;
}

.heroBanner {
    cursor: none;
    position: relative;
}

.hero-cursor {
    position: fixed;
    left: 0;
    top: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgb(184, 134, 11) 0%, rgb(240, 208, 128) 40%, rgb(201, 168, 76) 70%, rgb(184, 134, 11) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--e-global-color-a0a3b38);
    font-family: var(--e-global-typography-94545be-font-family), Sans-serif;
    font-size: var(--e-global-typography-94545be-font-size);
    font-weight: var(--e-global-typography-94545be-font-weight);
    text-transform: var(--e-global-typography-94545be-text-transform);
    line-height: var(--e-global-typography-94545be-line-height);
    letter-spacing: 0.5px;
    pointer-events: none !important;
    transform: translate(-50%, -50%) scale(0);
    transition: transform .35s ease;
    z-index: 999999;
}

.hero-banner:hover .hero-cursor {
    transform: translate(-50%, -50%) scale(1);
}

.editorial {
    width: 100%;

}

.eyebrow {
    color: #9f9f9f;
    text-transform: uppercase;
    letter-spacing: .22em;
    font-size: 13px;
}

.explore-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.explore-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: var(--e-global-typography-94545be-font-family), Sans-serif;
    font-size: var(--e-global-typography-94545be-font-size);
    font-weight: var(--e-global-typography-94545be-font-weight);
    text-transform: var(--e-global-typography-94545be-text-transform);
    line-height: var(--e-global-typography-94545be-line-height);
    letter-spacing: var(--e-global-typography-94545be-letter-spacing);
    color: var(--e-global-color-646a4a7);
    transition: .35s ease;
}

.explore-btn:hover {
    color: var(--e-global-color-646a4a7);
}

.explore-btn svg {
    width: 20px;
    height: 20px;
    transition: transform .4s ease;
}

.explore-btn:hover svg {
    transform: translateY(6px);
}

.explore-btn svg {
    animation: arrowBounce 2s ease-in-out infinite;
}

@keyframes arrowBounce {

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

    50% {
        transform: translateY(6px);
    }

}

/* GRID */

.editorial-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 18px;
}

/* CARD */

.story-card {
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    opacity: 0;
    transform: translateY(120px);
    height: 600px;
}

.story-card:hover .overlay {
    background: linear-gradient(to top, rgb(0 0 0 / 98%), rgba(0, 0, 0, .82), #0000009e);
}

/* 60 / 40 Pattern */

.story-card:nth-child(4n+1) {
    grid-column: span 7;
}

.story-card:nth-child(4n+2) {
    grid-column: span 3;
}

.story-card:nth-child(4n+3) {
    grid-column: span 3;
}


.story-card .bottom {
    margin-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--e-global-typography-94545be-font-family), Sans-serif;
    font-size: var(--e-global-typography-94545be-font-size);
    font-weight: var(--e-global-typography-94545be-font-weight);
    text-transform: var(--e-global-typography-94545be-text-transform);
    line-height: var(--e-global-typography-94545be-line-height);
    letter-spacing: var(--e-global-typography-94545be-letter-spacing);
    color: var(--e-global-color-646a4a7) !important;
}

.story-card .view-story {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #c79b39;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    opacity: 0;
    transform: translateX(-20px);
    transition: .45s;
}


.story-card::after {

    content: "";
    position: absolute;

    top: 0px;
    left: 0px;

    width: 2px;
    height: 0;

    background: linear-gradient(to bottom,
            #d5b25d,
            rgba(255, 220, 130, 0));

    transition: height .45s ease;
    z-index: 5;
}

/* Hover */

.story-card:hover .content {
    transform: translateY(-10px);
}

.story-card:hover .view-story {
    opacity: 1;
    transform: translateX(0);
}

.story-card:hover::after {
    height: 100%;
}

.story-card:nth-child(4n+4) {
    grid-column: span 7;
}

.story-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    transition: .8s;
    transform: scale(1) !important;
    object-position: center;
}

.story-card:hover img {
    transform: scale(1.05) !important;
}

.story-card:hover img {
    transform: scale(1.15);
}

.editorial-grid .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgb(0 0 0 / 98%), rgba(0, 0, 0, .7), #0000009e);
}

.editorial-grid .content {
    position: absolute;
    left: 35px;
    right: 35px;
    bottom: 35px;
    z-index: 2;
}

.editorial-grid .tag {
    font-size: 12px;
    color: var(--golden-color);
    letter-spacing: .18em;
    text-transform: uppercase;
}

.editorial-grid .content h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 52px;
    font-weight: 500;
    margin: 18px 0;
    color: #fff;
}

.editorial-grid .content p {
    color: #d8d8d8;
    margin-bottom: 18px;
    line-height: 1.7;
}

.editorial-grid .meta {
    color: var(--golden-color);
    font-size: 13px;
}

.modelsSwiper {

    overflow: visible;
    padding-left: 5%;
    padding-right: 5%;

}

.modelsSwiper .model-card {

    text-decoration: none;
    color: white;

}

.modelsSwiper .model-card img {

    width: 100%;
    object-fit: cover;
    transition: .5s;
    height: 500px;
    object-position: center;

}

.hover-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.hover-link .arrow {
    opacity: 0;
    transform: translateX(-20px);
    transition:
        opacity .35s ease,
        transform .45s cubic-bezier(.22, .61, .36, 1);
    color: #b79345;
    font-size: 22px;
}

/* Hover the entire card */
.model-card:hover .hover-link .arrow {
    opacity: 1;
    transform: translateX(0);
}

.model-card .image-wrap {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .8s cubic-bezier(.22, .61, .36, 1);
    filter:brightness(0.8) contrast(1) saturate(0.9);
}


.model-card .overlay {
    position: absolute;
    inset: 0;
    transform: scale(1);
    /* background: linear-gradient(to top, rgba(10, 10, 10, 0.88), transparent 55%); */
    transition: .45s ease;
    z-index: 2;
}


.model-card .image-wrap::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 3px;
    transition: width .45s ease;
    background: linear-gradient(to bottom, #d5b25d, rgba(255, 220, 130, 0));
    z-index: 5;
}


.vertical-meta {
    display: none;
    position: absolute;

    top: 14px;
    right: 10px;

    writing-mode: vertical-rl;
    text-orientation: mixed;

    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: #b79345;

    z-index: 5;

    transition: .4s ease;
}

.content {
    padding-top: 18px;
    transition: .4s ease;
}



.model-card:hover .image-wrap img {

    transform: scale(1.08);
}

/* 
.model-card:hover .overlay {

    background: linear-gradient(to top, rgba(10, 10, 10, 0.8), transparent 80%);
} */

.model-card:hover .image-wrap::after {

    width: 100%;
}

.model-card:hover .vertical-meta {

    transform: translateX(-15px);
}

.model-card:hover .content {

    transform: translateY(-8px);
}

.model-card:hover .hover-link {

    opacity: 1;

    transform: translateY(0);
}


.model-card {

    transition: transform .35s ease;
}

.model-card:hover {

    transform: translateY(-6px);
}

.modelsSwiper .model-card:hover img {

    transform: scale(1.04);

}

.modelsSwiper .content h3,
.service-card h3,
.models-grid h3 {

    font-family: var(--e-global-typography-5c032b9-font-family), Sans-serif;
    font-size: 24px;
    font-weight: var(--e-global-typography-5c032b9-font-weight);
    line-height: var(--e-global-typography-5c032b9-line-height);
    color: var(--e-global-color-secondary);
    margin-bottom: 0;
}

.modelsSwiper .tag,
.models-grid .tag {

    display: block;
    margin-bottom: 20px;
    font-family: var(--e-global-typography-94545be-font-family), Sans-serif;
    font-size: var(--e-global-typography-94545be-font-size);
    font-weight: var(--e-global-typography-94545be-font-weight);
    text-transform: var(--e-global-typography-94545be-text-transform);
    line-height: var(--e-global-typography-94545be-line-height);
    letter-spacing: var(--e-global-typography-94545be-letter-spacing);
    color: rgba(201, 168, 76, 0.6);

}

.modelsSwiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.modelsSwiper .content ul {

    list-style: none;

}

.modelsSwiper .content li {

    margin-bottom: 7px;
    color: #999;
    font-size: 14px;

}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.service-card {
    padding: 48px;
    border-right: 1px solid #e6e2db;
    border-bottom: 1px solid #e6e2db;
    transition: .35s ease;
    height: 100%;
}

.services-grid a:nth-child(4) .service-card,
.services-grid a:nth-child(5) .service-card,
.services-grid a:nth-child(6) .service-card {
    border-bottom: 0
}

.services-grid a:nth-child(3) .service-card,
.services-grid a:nth-child(6) .service-card {
    border-right: 0;
}

.service-card:hover {
    background: #fff;
}

.service-number {
    display: block;
    margin-bottom: 24px;
    font-family: var(--e-global-typography-94545be-font-family), Sans-serif;
    font-size: var(--e-global-typography-94545be-font-size);
    font-weight: var(--e-global-typography-94545be-font-weight);
    text-transform: var(--e-global-typography-94545be-text-transform);
    line-height: var(--e-global-typography-94545be-line-height);
    letter-spacing: var(--e-global-typography-94545be-letter-spacing);
    color: var(--e-global-color-646a4a7);
}

.fixWidth {
    max-width: fit-content;
    padding: 0 50px !important;
}

.service-card h3 {
    color: var(--e-global-color-a0a3b38);

}

.services-grid .line {
    display: block;
    width: 55px;
    height: 1px;
    background: var(--e-global-color-646a4a7);
    margin: 20px 0;
    transition: all .3s ease;
}

.service-card:hover .line {
    width: 70px;
}

.service-card p {
    font-family: var(--e-global-typography-ad72dae-font-family), Sans-serif;
    font-size: var(--e-global-typography-ad72dae-font-size);
    font-weight: var(--e-global-typography-ad72dae-font-weight);
    color: #777777;
}

.luxury-form {
    max-width: 100%;
    margin: auto;
}

span.wpcf7-spinner:nth-of-type(2) {
    display: none;
}

.wpcf7 form .wpcf7-response-output {
    text-align: center;
    color: rgb(136, 136, 136) !important;
    border: 1px solid rgb(201 168 74);
    margin-inline: 0;
    padding: 10px;
}

.luxury-form .wpcf7-not-valid-tip {
    font-size: 14px !important;
    position: relative;
    margin-top: 10px;
    color: rgb(136, 136, 136) !important;
}

.luxury-form .inquiry-line {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

body .select2-container {
    width: 100% !important;
    font-family: "Cormorant Garamond", serif;
}

/* Selected field */
body .select2-container--default .select2-selection--single {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgb(201 168 74 / 60%) !important;
    border-radius: 0;
    height: 52px;
    display: flex;
    align-items: center;
    padding: 0;
}

/* Selected text */
body .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: rgb(201 168 74 / 60%) !important;
    font-size: 24px;
    line-height: 52px;
    padding-left: 0;
    padding-right: 35px;
}

/* Arrow */
body .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 52px;
    right: 0;
}

body .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: rgb(201 168 74 / 60%) transparent transparent transparent !important;
    border-width: 6px 5px 0;
}

/* Dropdown */
body .select2-dropdown {
    background: #000 !important;
    border: 1px solid rgb(201 168 74 / 60%) !important;
    border-radius: 0;
    overflow: hidden;
}

/* Options */
body .select2-results__option {
    color: rgb(201 168 74 / 60%) !important;
    padding: 12px 18px;
    font-size: 17px;
    border-bottom: 1px solid rgba(141, 116, 64, 0.3);
}

/* Hover */
body .select2-results__option--highlighted {
    background: rgb(201 168 74 / 60%) !important;
    color: #000 !important;
}

/* Selected option */
body .select2-results__option[aria-selected="true"] {
    background: #1a1a1a !important;
    color: #d8c08a !important;
}

/* Search box */
body .select2-search--dropdown {
    background: #000 !important;
    padding: 10px;
}

body .select2-search--dropdown .select2-search__field {
    background: transparent !important;
    color: #d8c08a !important;
    border: 1px solid rgb(201 168 74 / 60%) !important;
    outline: none;
}

/* Focus */
body .select2-container--default.select2-container--open .select2-selection--single {
    border-bottom-color: #d8c08a !important;
}

/* Placeholder */
body .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: rgb(201 168 74 / 60%) !important;
}

.luxury-form .inquiry-line span {
    color: rgb(136, 136, 136);
    font-family: var(--e-global-typography-5c032b9-font-family), Sans-serif;
    font-size: 24px;
    font-weight: var(--e-global-typography-5c032b9-font-weight);
    line-height: var(--e-global-typography-5c032b9-line-height);
    margin-bottom: 0;
}

/* Hover */
body .select2-container--default .select2-results__option--highlighted,
body .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background: #c9a84a !important;
    color: #000 !important;
}

/* Selected/Active */
body .select2-container--default .select2-results__option--selected,
body .select2-container--default .select2-results__option[aria-selected="true"] {
    background: #1a1a1a !important;
    color: #c9a84a !important;
}

/* Keyboard focus */
body .select2-results__option--focus,
body .select2-results__option:focus {
    background: #1a1a1a !important;
    color: #c9a84a !important;
}

/* Prevent white background */
body .select2-container--default .select2-results>.select2-results__options {
    background: #000 !important;
}

body .select2-results__option {
    background: #000 !important;
}

.luxury-form select {
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    color: rgba(240, 208, 128, 0.5);
    border: none;
    border-bottom: 1px solid rgba(240, 208, 128, 0.5);
    font-size: 36px;
    font-family: "Cormorant Garamond", serif;
    padding: 0 40px 8px 0;
    cursor: pointer;
    background-image: url("/wp-content/uploads/2026/07/down-arrow-icon.svg");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 15px;
    font-family: var(--e-global-typography-5c032b9-font-family), Sans-serif;
    font-size: 24px;
    font-weight: var(--e-global-typography-5c032b9-font-weight);
    line-height: 1;
    border-radius: 0;
    outline: none;
}

.luxury-form input:focus {
    outline: none;
}

.luxury-form input[type=date] {

    background: transparent;
    color: rgba(240, 208, 128, 0.5);
    border: none;
    border-bottom: 1px solid rgba(240, 208, 128, 0.5);
    padding: 0 0px 8px 0;
    cursor: pointer;
    font-family: var(--e-global-typography-5c032b9-font-family), Sans-serif;
    font-size: 24px;
    font-weight: var(--e-global-typography-5c032b9-font-weight);
    line-height: 1;
    border-radius: 0;
    outline: none;

}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.luxury-grid {

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 34px;
    margin-bottom: 34px;

}

.luxury-form label {

    display: block;
    font-family: var(--e-global-typography-94545be-font-family), Sans-serif;
    font-size: var(--e-global-typography-94545be-font-size);
    font-weight: var(--e-global-typography-94545be-font-weight);
    text-transform: var(--e-global-typography-94545be-text-transform);
    line-height: var(--e-global-typography-94545be-line-height);
    letter-spacing: 1.2px;
    color: rgb(201 168 74 / 60%);
    margin: 0;

}

.luxury-form input[type=text],
.luxury-form input[type=email],
.luxury-form textarea {

    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(201, 164, 92, .25);
    color: rgb(209, 209, 209);
    padding: 18px 0;
    font-size: 16px;
    outline: none;

}

.inquire-popup .dialog-widget-content {
    overflow-y: hidden !important;
    overflow-x: hidden !important;
}

#elementor-popup-modal-567 .dialog-message {
    height: 100vh;
    overflow: auto;
}

.luxury-form textarea {

    height: 120px;

    resize: none;

}

.luxury-form ::placeholder {

    color: #8d8d8d;

}

.luxury-form .field br {
    display: none;
}

.luxury-form input[type=submit] {

    margin-top: 50px;
    border: none;
    cursor: pointer;
    transition: .4s;
    background-color: transparent;
    font-family: "JetBrains Mono", Sans-serif;
    font-size: 14px;
    line-height: 1 !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    fill: var(--e-global-color-primary);
    color: var(--e-global-color-primary);
    background-image: linear-gradient(180deg, #B97E14 0%, #E2AE33 55%);
    transition-duration: 3s;
    border-radius: 0px 0px 0px 0px;
    padding: 20px 40px 20px 40px;

}

.luxury-form input[type=submit]:hover {

    transform: translateY(-4px);

    box-shadow: 0 20px 40px rgba(212, 175, 55, .25);

}

.inquire-popup .dialog-message::-webkit-scrollbar,
.select2-results__options::-webkit-scrollbar {
    width: 4px;
}

.inquire-popup .dialog-message::-webkit-scrollbar-track,
.select2-results__options::-webkit-scrollbar-track {
    background: #0b0b0b;
}

.inquire-popup .dialog-close-button {
    padding: 8px;
    border: 1px solid rgb(201 168 74 / 60%);
    outline: none;
}

.inquire-popup .dialog-message::-webkit-scrollbar-thumb,
.select2-results__options::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom,
            #f3d67b,
            #d4af37,
            var(--e-global-color-646a4a7));
    border-radius: 20px;
}

.inquire-popup .dialog-message::-webkit-scrollbar-thumb:hover,
.select2-results__options::-webkit-scrollbar-thumb:hover {
    background: var(--e-global-color-646a4a7);
}

body.dialog-prevent-scroll {
    overflow: hidden !important;
}

footer .elementor-icon-list-icon svg path {
    stroke: var(--e-global-color-646a4a7);
}


footer .elementor-icon-list-item:nth-child(2) svg path,
footer .elementor-icon-list-item:nth-child(3) svg path {
    fill: var(--e-global-color-646a4a7);
}

.off-inner {
    float: right;
}

.footerLogo .elementor-heading-title {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.15) 0%, rgba(240, 208, 128, 0.25) 50%, rgba(201, 168, 76, 0.15) 100%) text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
    overflow: hidden;
}

footer .elementor-button span.elementor-button-icon svg {
    transition: all .3s ease;
}


.models-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 36px;
}

.filter-btn,
.filter-btn:focus {
    background-color: transparent;
    border: 1px solid rgba(201, 168, 76, .3);
    color: rgba(201, 168, 76, 0.55);
    padding: 8px 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    transition: .35s;
    border-radius: 0;
    font-family: var(--e-global-typography-94545be-font-family), Sans-serif;
    font-size: var(--e-global-typography-94545be-font-size);
    font-weight: var(--e-global-typography-94545be-font-weight);
    text-transform: var(--e-global-typography-94545be-text-transform);
    line-height: var(--e-global-typography-94545be-line-height);
    letter-spacing: .1em;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, rgb(184, 134, 11) 0%, rgb(240, 208, 128) 40%, rgb(201, 168, 76) 70%);
    color: rgb(10, 10, 10);
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.models-grid .model-card {
    display: flex;
    text-decoration: none;
    color: inherit;
    flex-direction: column;
}

.models-grid .vertical-meta {
    writing-mode: horizontal-tb;
    left: 20px;
    bottom: 20px;
    top: unset;
    opacity: 0;
    transform: translateX(0px);
}

.models-grid .model-card:hover .vertical-meta {
    opacity: 1;
    transform: translateX(0px);
}

.models-grid .content {
    margin: 20px 0 0;
    padding: 0 !important;
}


.models-grid .image-wrap {
    position: relative;
    overflow: hidden;
    height: auto;
    width: 100%;
    aspect-ratio: 3/4;
}

.models-grid .image-wrap img {
    width: 100%;
    height: 100%;
    display: block;
}

.models-grid .content {
    padding: 18px 0 0;
}

.models-grid .hover-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.model-single {
    padding-block: 100px;
}

.single-models {
    background: var(--e-global-color-primary);
}


.models-wrapper a.back-link {
    position: absolute;
    left: 0;
    top: -40px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
}

.imageOuter img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: all .3s ease;
}

.portfolio-grid .imageOuter:hover {
    border: 2px solid var(--golden-color);
}

.portfolio-grid .imageOuter:hover img {
    transform: scale(1.05);
}

.model-single .container {
    max-width: min(1640px, 100%);
    width: 100%;
    margin-inline: auto;
    padding-inline: 20px;
}

.model-single .models-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;

}

.model-left {
    position: sticky;
    top: 40px;
    align-self: start;
}

.model-single .featured-image {
    margin: 0;
    height: 100%;
    filter: brightness(0.75) contrast(1.05) saturate(0.6);
    margin-bottom: 30px;
}

.model-single .featured-image img {
    width: 100%;
    display: block;
    height: 100%;
    object-fit: cover;
    object-position: center;

}

.model-single .category,
.model-single .back-link,
.model-single .section-title,
.model-single .stat span {
    font-family: var(--e-global-typography-94545be-font-family), Sans-serif;
    font-size: var(--e-global-typography-94545be-font-size);
    font-weight: var(--e-global-typography-94545be-font-weight);
    text-transform: var(--e-global-typography-94545be-text-transform);
    line-height: var(--e-global-typography-94545be-line-height);
    letter-spacing: var(--e-global-typography-94545be-letter-spacing);
    color: var(--golden-color);
}

.model-single .model-info h1 {
    font-family: var(--e-global-typography-5c032b9-font-family), Sans-serif;
    font-size: var(--e-global-typography-5c032b9-font-size);
    font-weight: var(--e-global-typography-5c032b9-font-weight);
    line-height: var(--e-global-typography-5c032b9-line-height);
    color: var(--e-global-color-secondary);
}


.model-single .content-block {

    margin-bottom: 44px;

}

.model-single .section-title {

    margin-bottom: 25px;

}

.model-single .content-block p {
    font-family: "Inter", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.85em;
    color: var(--e-global-color-f66a351);
    margin-top: 18px;
}

.model-single .stats-grid {

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 60px 0;

}

.model-single .stat {
    border: 1px solid rgba(201, 168, 76, 0.1);
    padding: 25px;
}


.model-single .stat h4 {
    font-family: var(--e-global-typography-5c032b9-font-family), Sans-serif;
    font-size: 24px;
    font-weight: var(--e-global-typography-5c032b9-font-weight);
    line-height: var(--e-global-typography-5c032b9-line-height);
    color: var(--e-global-color-secondary);
    margin-bottom: 0;

}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 36px;
}

.portfolio-grid .imageOuter {
    width: 100%;
    display: block;
    border: 2px solid transparent;
    transition: all .3s ease;
    transform: scale(1);
    overflow: hidden;
    aspect-ratio: 9 / 16;
    max-height: 550px;
}

.model-single .clients {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.model-single .clients span {
    border: 1px solid rgba(201, 168, 76, 0.2);
    padding: 10px 18px;
    color: rgb(201 168 76 / 60%);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.book-model-cta {
    position: fixed;
    left: 65%;
    bottom: 30px;
    transform: translate(-65%, 100px);
    opacity: 0;
    visibility: hidden;
    z-index: 2;
    transition: all .4s ease;

}

.book-model-cta.show {
    transform: translate(-65%, 0);
    opacity: 1;
    visibility: visible;
}

.book-model-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    background-color: transparent;
    font-family: "JetBrains Mono", Sans-serif;
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    fill: var(--e-global-color-primary) !important;
    color: var(--e-global-color-primary) !important;
    background-image: linear-gradient(180deg, #B97E14 0%, #E2AE33 55%);
    transition-duration: 3s;
    border-radius: 0px 0px 0px 0px;
    padding: 20px 40px 20px 40px;
    height: auto;
}

.book-model-cta a:hover {
    transform: translateY(-3px);
}

.book-model-cta span {
    font-size: 14px;
    transition: transform .3s;
}

.models-wrapper a.back-link span {
    line-height: 1;
    display: block;
    margin-top: -4px;
    transition: all .3s ease;
    position: relative;
    left: 0px;

}

.models-wrapper a.back-link:hover span {
    left: -6px;
}

.book-model-cta a:hover span {
    transform: translateX(6px);
}

.collaboratorsSec .models-grid {
    grid-template-columns: repeat(3, 1fr);
}

.collaborator-card .image-wrap .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.35) 60%, rgba(0, 0, 0, 0.15) 100%);
    opacity: 0.35;
    transition: opacity 0.45s ease;
    z-index: 2;
}

.collaborator-card:hover .image-wrap .overlay {
    opacity: 0.95;
}

.collab-img-top {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 3;
}

.collab-badge {
    background: rgba(18, 18, 18, 0.85);
    color: #c9a84c;
    padding: 6px 14px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-jet);
    font-weight: 500;
}

.collab-works {
    color: rgba(201, 168, 76, 0.9);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-jet);
    font-weight: 500;
}

.collab-hover-content {
    position: absolute;
    bottom: 25px;
    left: 20px;
    right: 20px;
    z-index: 3;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}

.collaborator-card:hover .collab-hover-content {
    opacity: 1;
    transform: translateY(0);
}

.collab-excerpt {
    color: #e5e5e5;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: var(--e-global-typography-ad72dae-font-family), Sans-serif;
    text-align: left;
}

.collab-clients {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.collab-clients .client-tag {
    border: 1px solid rgba(201, 168, 76, 0.45);
    color: rgba(201, 168, 76, 0.55);
    padding: 4px 10px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-jet);
    background: rgba(0, 0, 0, 0.35);
}

.collaborator-card .content .location {
    font-family: var(--e-global-typography-ad72dae-font-family), Sans-serif;
    font-size: var(--e-global-typography-ad72dae-font-size);
    font-weight: var(--e-global-typography-ad72dae-font-weight);
    color: var(--e-global-color-f66a351);
}

.collaborator-card .tag {
    margin-bottom: 10px;
}

@media (max-width: 1366px) {
    .editorial-grid .content h3 {
        font-size: 38px;
    }

    .modelsSwiper .model-card img {
        height: 350px;
    }
}

@media (max-width: 1024px) {

    header .elementor-nav-menu--main ul>li>a::before,
    header .elementor-nav-menu--main li>a::before {
        top: 15px;
    }

    .editorial-grid .content h3 {
        font-size: 28px;
        margin: 8px 0;
    }

    .service-card {
        padding: 20px;
    }

    .editorial-grid .content {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .fixWidth {
        padding: 0 24px !important;
    }

    .verticalLine::after {
        height: 54px;
    }

    .models-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .models-grid .content {
        margin: 10px 0 0;
    }

    .model-single .models-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .model-single .featured-image {
        height: 100%;
        margin-bottom: 20px;
    }

    .model-single .content-block {
        margin-bottom: 0;
    }

    .model-single .stats-grid {

        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin: 20px 0;
    }

    .model-single .stat h4 {
        font-size: 20px;
    }

    .portfolio-grid {
        margin-block: 16px;
    }

    .model-single .clients {
        margin-top: 20px;
    }

    .model-single {
        padding-block: 60px;
    }

    .book-model-cta a {
        padding: 15px 20px 15px 20px;
        letter-spacing: 1.8px;
    }

    .book-model-cta {
        transform: none;
        left: 20px;
        right: 20px;
        bottom: 30px;
        width: max-content;
        margin-inline: auto;
    }

    .book-model-cta.show {
        transform: none;

    }

    .inquire-popup {
        position: fixed !important;
    }

    .collaboratorsSec .models-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .collab-hover-content {
        transform: none;
        opacity: 1;
    }
}

@media(max-width:767px) {

    .luxury-grid {

        grid-template-columns: 1fr;

    }

    .story-card {
        grid-column: span 12 !important;
        height: auto;
    }

    .luxury-form select,
    .luxury-form input[type=date] {

        font-size: 24px;

    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    .service-card {
        padding: 20px 0;
        border-right: 0;
        border-bottom: 1px solid #e6e2db !important;
    }

    .editorial-grid .meta {
        font-size: 10px;
    }

    .editorial-grid .tag {
        font-size: 10px;

    }

    .editorial-grid .content p {
        font-size: 12px;
    }

    header .elementor-nav-menu--main ul>li>a::before,
    header .elementor-nav-menu--main li>a::before {
        top: 9px;
    }

    .verticalLine::after {
        height: 44px;
    }

    .verticalLine::after {
        top: 60px;
    }

    .models-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }

    .model-single {
        padding-block: 40px;
    }

    .model-single .models-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .model-left {
        position: relative;
        top: 0;
        align-self: start;
    }

    .models-wrapper a.back-link span {

        margin-top: -1px;
    }

    .luxury-form input[type=submit] {
        margin-top: 30px;
    }

    .collaboratorsSec .models-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }
}