/* =========================
   STICKY FOOTER
========================= */

.page-wrap {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-wrap main {
    flex: 1;
}

@font-face {
    font-family: 'BebasNeue';
    src: url('../fonts/BebasNeue-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FuturaLight';
    src: url('../fonts/futura-lt-pro-light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-size: 16px;
    font-family: "FuturaLight", "FuturaLight", sans-serif;
    font-weight: 300;
    letter-spacing: 0.5px;
    background: #fff;
    color: #000;
    font-kerning: normal;
}

html {
    font-family: "FuturaLight", "FuturaLight", sans-serif;
}

/* =========================
   HEADER
========================= */

.site-header {
    background: #fff;
    z-index: 1000;
}

.header-inner {
    padding: 30px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.branding {
    display: flex;
    flex-direction: column;
}

.logo {
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 4px;
    text-decoration: none;
    color: #000;
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
}

.tagline {
    font-family: "BebasNeue", sans-serif;
    font-size: 20px;
    letter-spacing: 2px;
    margin-top: 6px;
    text-transform: uppercase;
    line-height: 2;
}

nav ul {
    display: flex;
    font-size: 14px;
    list-style: none;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 7px;
}

nav a {
    text-decoration: none;
    font-family: "FuturaLight", sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #000;
    transition: color 0.3s;
}

nav a:hover {
    color: #222;
}

.lang-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: "FuturaLight", sans-serif;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #000;
}

.lang-item {
    position: relative;
}

.lang-dropdown {
    position: relative;
}

.lang-menu {
    position: absolute;
    top: 120%;
    right: 0;
    background: #fff;
    border: 1px solid #eee;
    padding: 8px 0;
    display: none;
    min-width: 60px;
    text-align: right;
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.2s ease;
}

.lang-menu a {
    display: block;
    padding: 6px 12px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000;
}

.lang-menu a:hover {
    background: #f7f7f7;
    color: #000;
}

.lang-menu.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   GALLERY
========================= */

.gallery-divider-top {
    margin: 25px 15px 0px 15px;
    border-top: 1px solid #000;
}

.gallery-divider-bottom {
    margin: 25px 15px 25px 15px;
    border-top: 1px solid #000;
}

.gallery-wrapper {
    padding: 15px;
}

.gallery-wrapper-other {
    padding: 0px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 460px;
    gap: 5px;
}

.gallery-item {
    grid-column: span 1;
    display: block;
    position: relative;
    overflow: hidden;
}

.gallery-item.is-landscape {
    grid-column: span 2;
}

.gallery-item.is-wide {
    grid-column: span 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    will-change: auto;
}

.gallery-item:nth-child(n+9) {
    content-visibility: auto;
    contain-intrinsic-size: 0 360px;
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    transition: 0.4s ease;
}

.gallery-item:hover::after {
    background: rgba(0, 0, 0, 0.45);
}

.project-title {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    font-family: "FuturaLight", sans-serif;
    color: #fff;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: capitalize;
    opacity: 0;
    transition: 0.4s ease;
    z-index: 2;
    white-space: nowrap;
}

.gallery-item:hover .project-title {
    opacity: 1;
}

/* =========================
   MOBILE MENU TOGGLE
========================= */

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: #000;
}

/* =========================
   PREMIUM ABOUT
========================= */

.about-premium {
    max-width: 1350px;
    margin: 0 auto;
    padding: 60px 80px 140px 80px;
}

.about-premium-header h1 {
    font-size: 20px;
    letter-spacing: 4px;
    font-weight: 500;
    margin-bottom: 10px;
    text-align: center;
}

.about-separator {
    width: 100%;
    margin-bottom: 40px;
}

.about-premium-grid {
    display: grid;
    grid-template-columns: 0.6fr 1.1fr;
    gap: 45px;
    align-items: start;
}

.about-premium-images {
    position: relative;
    padding-bottom: 0;
}

.about-single-image img {
    width: 100%;
    height: auto;
    user-select: none;
    pointer-events: none;
}

.about-premium-text {
    max-width: 540px;
}

.about-premium-text p {
    font-family: inherit;
    font-size: 14px;
    line-height: 2;
    color: #000;
    display: flex;
    margin-bottom: 15px;
    flex-direction: column;
    justify-content: space-between;
}

/* =========================
   CONTACT PREMIUM
========================= */

.contact-premium {
    max-width: 1500px;
    margin: 0 auto;
    padding: 60px 80px 140px 80px;
}

.contact-premium-header h1 {
    font-size: 20px;
    letter-spacing: 4px;
    font-weight: 500;
    margin-bottom: 10px;
    text-align: center;
}

.contact-separator {
    width: 100%;
    margin-bottom: 40px;
}

.contact-premium-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 45px;
    align-items: start;
}

.contact-premium-image {
    position: relative;
}

.contact-premium-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-premium-text {
    max-width: 520px;
}

.contact-premium-text p,
.contact-quote p {
    font-size: 14px;
}

.contact-details p {
    margin-bottom: 8px;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.contact-social a {
    margin-right: 18px;
    font-size: 14px;
    color: #000;
    transition: 0.3s ease;
    text-decoration: none;
}

.contact-social a:hover {
    opacity: 0.5;
}

.contact-quote p {
    font-style: italic;
    line-height: 1.8;
    opacity: 0.8;
}

.contact_link {
    text-decoration: none;
    color: inherit;
    font-size: 14px;
}

/* =========================
   SERVICES PREMIUM
========================= */

.services-premium {
    max-width: 1500px;
    margin: 0 auto;
    padding: 60px 80px 140px 80px;
}

.services-premium-header h1 {
    font-size: 20px;
    letter-spacing: 4px;
    font-weight: 500;
    margin-bottom: 10px;
    text-align: center;
}

.services-separator {
    width: 100%;
    margin-bottom: 40px;
}

.services-premium-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.services-premium-text {
    max-width: 100%;
    margin: 0 auto;
    width: 68%;
}

.services-premium-image {
    order: -1;
    width: 100%;
}

.services-premium-image img {
    width: 100%;
    height: auto;
    max-height: 600px;
    display: block;
    object-fit: contain;
}

.image-placeholder {
    width: 100%;
}

.service-item {
    margin-bottom: 50px;
}

.service-item h3 {
    font-family: "FuturaLight", sans-serif;
    font-size: 14px;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    font-weight: 400;
    text-transform: uppercase;
}

.service-item p {
    font-family: "FuturaLight", sans-serif;
    font-size: 14px;
    line-height: 1.9;
    color: #000;
}

.service-note {
    margin-top: 60px;
    font-style: italic;
    opacity: 0.8;
    font-size: 14px;
    line-height: 1.8;
}

/* =========================
   FOOTER
========================= */

footer {
    background-color: #fff;
    padding: 8px 0;
    text-align: center;
}

.footer-content {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 150px;
    padding: 0 15px;
}

.footer-logo img {
    height: 28px;
    width: auto;
    margin-bottom: 0;
}

.footer-desc {
    font-size: 12px;
    color: #000;
    line-height: 0;
}

.footer-legal {
    max-width: 1400px;
    margin: 4px auto 2px auto;
    text-align: center;
    font-size: 10px;
}

.footer-legal a {
    text-decoration: none;
    color: #000;
    margin: 0 6px;
}

.footer-legal span {
    opacity: 0.5;
}

.footer-bottom {
    max-width: 1400px;
    margin: 4px auto 0 auto;
    font-size: 10px;
    color: #999;
    text-align: center;
}

.footer-credit {
    color: inherit;
    text-decoration: none;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    font-size: 12px;
}

.footer-credit:hover {
    opacity: 1;
}

.footer-social-icons {
    display: flex;
    gap: 18px;
}

.footer-social-icons a {
    font-size: 18px;
    color: #000;
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    color: #000;
    transform: translateY(-2px);
}

/* =========================
   LEGAL PREMIUM
========================= */

.legal-premium {
    max-width: 1500px;
    margin: 0 auto;
    padding: 60px 80px 140px 80px;
}

.legal-premium-header h1 {
    font-size: 20px;
    letter-spacing: 4px;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: center;
}

.legal-separator {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 40px auto;
}

.legal-premium-grid {
    display: grid;
    grid-template-columns: 1fr;
}

.legal-premium-text {
    max-width: 100%;
}

.legal-premium-text h3 {
    font-size: 14px;
    font-weight: 600;
    margin-top: 50px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: #000;
}

.legal-premium-text p,
.legal-premium-text li {
    font-size: 14px;
    line-height: 2;
    color: #000;
}

.legal-premium-text ul {
    padding-left: 20px;
    margin-bottom: 25px;
}

/* =========================
   PROJECT PREMIUM
========================= */

.project-premium {
    max-width: 1500px;
    margin: 0 auto;
    padding: 40px 80px 40px 80px;
}

.project-premium-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.project-premium-header h1 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-family: "FuturaLight", sans-serif;
    font-size: 20px;
    letter-spacing: 4px;
    font-weight: 300;
    text-align: center;
    white-space: nowrap;
    text-transform: uppercase;
}

.project-separator {
    width: 100%;
    margin-bottom: 40px;
}

.project-back-link {
    display: inline-block;
    font-family: "FuturaLight", sans-serif;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    color: #000;
    opacity: 0.5;
    transition: opacity 0.3s;
    flex-shrink: 0;
    z-index: 1;
}

.project-back-link:hover {
    opacity: 1;
    color: #000;
}

.project-premium-text {
    max-width: 1200px;
    margin: 40px auto 0 auto;
}

.project-credit {
    font-family: "FuturaLight", sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
    color: #000;
    margin-bottom: 20px;
}

.project-description p {
    font-family: "FuturaLight", sans-serif;
    font-size: 14px;
    line-height: 1.9;
    color: #000;
    margin-bottom: 20px;
}

.rotate-open {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: none;
}

/* =========================
   PROJECT SLIDER - DESKTOP
========================= */

.project-slider-wrap {
    position: relative;
    width: 100%;
    margin: 0 auto 40px auto;
    overflow: hidden;
    max-width: 1200px;
}

.pslider-viewport {
    width: 100%;
    overflow: visible;
}

.pslider-track {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
}

.pslider-slide {
    flex-shrink: 0;
    overflow: hidden;
    height: 560px;
}

.pslider-slide img {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.pslider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
}

.pslider-prev {
    left: 20px;
}

.pslider-next {
    right: 20px;
}

.pslider-arrow::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    top: 50%;
    left: 50%;
}

.pslider-prev::before {
    transform: translate(-30%, -50%) rotate(-135deg);
}

.pslider-next::before {
    transform: translate(-70%, -50%) rotate(45deg);
}

/* =========================
   PROJECT INFO
========================= */

.project-info {
    max-width: 1200px;
    margin: 16px auto 0 auto;
    padding: 0 0 0 0;
}

.project-info-name {
    font-family: "FuturaLight", sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    color: #000;
    margin-bottom: 3px;
}

.project-info-services {
    font-family: "FuturaLight", sans-serif;
    font-size: 13px;
    letter-spacing: 0.5px;
    color: #888;
}

/* #################################################### */
/* #################### RESPONSIVE #################### */

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 280px;
        grid-auto-flow: dense;
    }

    .gallery-item {
        grid-column: span 1;
    }

    .gallery-item.is-landscape {
        grid-column: span 2;
    }

    .gallery-item.is-wide {
        grid-column: span 2;
    }

    .about-premium {
        padding: 80px 40px;
    }

    .about-premium-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-premium-text {
        max-width: 100%;
    }

    .about-main-image img {
        height: 400px;
    }

    .about-secondary-image {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        margin-top: 30px;
    }

    .about-secondary-image img {
        height: 300px;
    }
}

@media (max-width: 992px) {
    .contact-premium-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-premium-image img {
        height: 450px;
    }

    nav {
        position: fixed;
        inset: 0;
        background: #ffffff;
        display: flex;
        justify-content: center;
        align-items: center;
        transform: translateY(-100%);
        transition: transform 0.5s ease;
        z-index: 999;
        font-size: 18px;
    }

    nav.active {
        transform: translateY(0);
    }

    nav ul {
        flex-direction: column;
        gap: 35px;
        text-align: center;
    }

    nav a,
    .lang-btn {
        font-size: 1px;
        letter-spacing: 3px;
    }

    .lang-menu a {
        font-size: 18px;
    }

    body.menu-open {
        overflow: hidden;
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .menu-toggle span {
        transition: all 0.3s ease;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    #mainNav ul {
        align-items: center;
    }
}

@media (max-width: 992px) and (orientation: landscape) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 220px;
        gap: 5px;
    }

    .gallery-item {
        grid-column: span 1;
    }

    .gallery-item.is-landscape,
    .gallery-item.is-wide {
        grid-column: span 2;
    }

    .contact-premium-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-premium-image img {
        height: 450px;
    }

    nav {
        position: fixed;
        inset: 0;
        background: #ffffff;
        display: flex;
        justify-content: center;
        align-items: center;
        transform: translateY(-100%);
        transition: transform 0.5s ease;
        z-index: 999;
        font-size: 18px;
    }

    nav.active {
        transform: translateY(0);
    }

    nav ul {
        flex-direction: column;
        gap: 35px;
        text-align: center;
    }

    nav a,
    .lang-btn {
        font-size: 18px;
        letter-spacing: 3px;
    }

    .lang-menu a {
        font-size: 18px;
    }

    body.menu-open {
        overflow: hidden;
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .menu-toggle span {
        transition: all 0.3s ease;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    #mainNav ul {
        align-items: center;
    }

    .about-premium-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .about-premium-images {
        padding-top: 10px;
    }

    .about-single-image img {
        height: 100%;
        max-height: 100%;
        object-fit: cover;
    }

    .about-premium-text {
        max-width: 100%;
        margin-top: 0;
        padding-top: 0;
    }

    .about-premium-text p {
        font-size: 16px;
        line-height: 1.25;
        margin-bottom: 15px;
    }

    .contact-premium-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .contact-premium-image img {
        width: 100%;
        max-height: 100%;
        object-fit: cover;
    }

    .contact-premium-text {
        max-width: 100%;
        margin-top: 0;
        padding-top: 0;
    }

    .contact-details p {
        font-size: 18px;
        line-height: 1.25;
    }

    .contact-quote p {
        font-size: 18px;
    }
}

@media (max-width: 844px) and (orientation: landscape) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 220px;
        gap: 5px;
    }

    .gallery-item {
        grid-column: span 1;
    }

    .gallery-item.is-landscape,
    .gallery-item.is-wide {
        grid-column: span 2;
    }

    .contact-premium-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-premium-image img {
        height: 450px;
    }

    nav {
        position: fixed;
        inset: 0;
        background: #ffffff;
        display: flex;
        justify-content: center;
        align-items: center;
        transform: translateY(-100%);
        transition: transform 0.5s ease;
        z-index: 999;
        font-size: 18px;
    }

    nav.active {
        transform: translateY(0);
    }

    nav ul {
        flex-direction: column;
        gap: 35px;
        text-align: center;
    }

    nav a,
    .lang-btn {
        font-size: 18px;
        letter-spacing: 3px;
    }

    .lang-menu a {
        font-size: 18px;
    }

    body.menu-open {
        overflow: hidden;
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .menu-toggle span {
        transition: all 0.3s ease;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    #mainNav ul {
        align-items: center;
    }

    .about-premium-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .about-premium-images {
        padding-top: 10px;
    }

    .about-single-image img {
        height: 100%;
        max-height: 100%;
        object-fit: cover;
    }

    .about-premium-text {
        max-width: 100%;
        margin-top: 0;
        padding-top: 0;
    }

    .about-premium-text p {
        font-size: 12px;
        line-height: 1.25;
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding-bottom: 15px;
    }

    .contact-details a {
        font-size: 12px;
    }

    .gallery-divider-top {
        margin-bottom: 15px;
    }

    .gallery-divider-bottom {
        margin-top: 15px;
    }

    .about-premium {
        padding: 40px 15px;
    }


    .footer-content {
        padding: 0 15px;
    }

    .about-main-image img {
        width: 100%;
    }

    .about-secondary-image {
        bottom: 0;
    }

    .about-premium-images {
        padding-bottom: 0;
    }

    .about-premium-text p {
        font-size: 14px;
    }

    .about-separator {
        margin-bottom: 40px;
    }

    .header-inner {
        padding: 15px 25px;
    }

    .tagline {
        font-size: 16px;
        letter-spacing: 1px;
        white-space: nowrap;
    }

    .logo {
        font-size: 32px;
    }

    .logo img {
        height: 42px;
    }

    .gallery-wrapper {
        margin-top: 0;
        padding: 4px;
    }



    .services-premium-text {
        max-width: 100%;
        margin: 0;
        width: 100%;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: unset;
        gap: 4px;
    }

    .gallery-item,
    .gallery-item.is-landscape,
    .gallery-item.is-wide {
        grid-column: span 1 !important;
        height: auto;
    }

    .gallery-item img {
        height: auto;
        width: 95%;
        object-fit: cover;
        display: block;
        margin: 0 auto;
    }

    nav {
        position: fixed;
        inset: 0;
        background: #ffffff;
        display: flex;
        justify-content: center;
        align-items: center;
        transform: translateY(-100%);
        transition: transform 0.5s ease;
        z-index: 999;
    }

    nav.active {
        transform: translateY(0);
    }

    nav ul {
        flex-direction: column;
        gap: 35px;
        text-align: center;
    }

    nav a,
    .lang-btn {
        font-size: 20px;
        letter-spacing: 3px;
    }

    .lang-menu a {
        font-size: 20px;
    }

    body.menu-open {
        overflow: hidden;
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .menu-toggle span {
        transition: all 0.3s ease;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    #mainNav ul {
        align-items: center;
    }

    .footer-social-icons {
        gap: 25px;
    }

    .contact-premium {
        max-width: 100%;
        margin: 0 auto;
        padding: 40px 15px;
    }

    .contact-premium-header h1 {
        margin-bottom: 10px;
    }

    .contact-separator {
        margin-bottom: 40px;
    }

    .contact-premium-image {
        margin: 0;
    }

    .contact-premium-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .contact-premium-text p,
    .contact-quote p,
    .contact-premium a {
        font-size: 14px;
    }

    .contact-link {
        font-size: 14px;
    }

    .services-separator {
        margin-bottom: 40px;
    }

    .services-premium {
        max-width: 100%;
        margin: 0 auto;
        padding: 40px 15px;
    }

    .services-premium-grid {
        gap: 40px;
        grid-template-columns: 1fr;
    }

    .services-premium-image img {
        height: auto;
        max-height: none;
        object-fit: contain;
    }

    .service-item h3,
    .service-item p {
        font-size: 14px;
    }

    /* PROJECT na mobileu */
    .project-premium {
        padding: 40px 0 40px 0;
    }

    .project-premium-header {
        padding: 0 15px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        margin-bottom: 12px;
    }

    .project-back-link {
        font-size: 10px;
        opacity: 0.5;
    }

    .project-premium-header h1 {
        position: static;
        transform: none;
        width: 100%;
        text-align: center;
        font-size: 16px;
        letter-spacing: 3px;
        white-space: normal;
    }

    .project-separator {
        margin-bottom: 16px;
    }

    .project-info {
        padding: 0 15px;
        margin-bottom: 100px;
    }

    /* MOBILE SLIDER */
    .project-slider-wrap {
        max-width: 100% !important;
        overflow: hidden !important;
    }

    .pslider-viewport {
        overflow: visible !important;
    }

    .pslider-track {
        gap: 6px !important;
        align-items: flex-start !important;
    }

    .pslider-slide {
        flex-shrink: 0 !important;
        height: 72vw !important;
        width: 54vw !important;
        min-width: 54vw !important;
    }

    .pslider-slide img {
        width: 100% !important;
        height: 100% !important;
        display: block !important;
        object-fit: cover !important;
    }

    .pslider-slide.is-landscape {
        width: 88vw !important;
        min-width: 88vw !important;
    }

    .pslider-slide.is-landscape img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .pslider-arrow {
        width: 40px;
        height: 40px;
    }

    .pslider-prev {
        left: 8px;
    }

    .pslider-next {
        right: 8px;
    }

    .pslider-arrow::before {
        width: 14px;
        height: 14px;
    }

    .legal-premium {
        padding: 40px 15px;
    }

    .legal-separator {
        margin-bottom: 40px;
    }
}

.fw-bold {
    font-weight: 700 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "FuturaLight", sans-serif;
}