/* ==========================================================
   MPASTANIS IKE HOME
   MASTER STYLE.CSS
========================================================== */


/* ==========================================================
   VARIABLES
========================================================== */

:root {
    --mp-black: #0f1113;
    --mp-dark: #15181b;
    --mp-dark-soft: #1b1e21;

    --mp-gold: #c99435;
    --mp-gold-light: #daa84b;

    --mp-white: #ffffff;
    --mp-offwhite: #f4f3ef;

    --mp-text: #181818;
    --mp-grey: #777777;
    --mp-grey-light: #aaaaaa;

    --mp-border-dark: rgba(255, 255, 255, 0.10);
    --mp-border-light: #d8d8d4;

    --header-height: 92px;
}


/* ==========================================================
   RESET
========================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    font-family: "Inter", Arial, Helvetica, sans-serif;

    background: var(--mp-offwhite);

    color: var(--mp-text);

    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    border: 0;
}

img {
    display: block;
    max-width: 100%;
}

h1,
h2,
h3,
h4 {
    font-family: "Montserrat", "Inter", Arial, sans-serif;
}

#home,
#company,
#services,
#projects,
#contact,
#featured-projects {
    scroll-margin-top: var(--header-height);
}


/* ==========================================================
   HEADER
========================================================== */

.header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: var(--header-height);

    padding: 0 5.5%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 45px;

    background: rgba(14, 16, 18, 0.985);

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    z-index: 9999;

    transition:
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.header.scrolled {
    background: rgba(10, 12, 14, 0.99);

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.22);
}


/* ==========================================================
   LOGO
========================================================== */

.brand-logo-link {
    width: 235px;
    height: 78px;

    flex: 0 0 235px;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    overflow: visible;

    background: transparent;
}

.brand-logo {
    display: block;

    width: 210px;
    height: auto;

    max-width: none;
    max-height: 70px;

    object-fit: contain;
    object-position: left center;

    border: none;
    outline: none;

    background: transparent;

    transition: opacity 0.25s ease;
}

.brand-logo-link:hover .brand-logo {
    opacity: 0.88;
}


/* ==========================================================
   NAVIGATION
========================================================== */

.navigation {
    margin-left: auto;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: clamp(18px, 1.75vw, 31px);

    min-width: 0;
}

.navigation a {
    position: relative;

    color: var(--mp-white);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.15px;

    white-space: nowrap;

    transition:
        color 0.25s ease,
        opacity 0.25s ease;
}

.navigation a:not(.nav-appointment)::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -9px;

    width: 0;
    height: 1px;

    background: var(--mp-gold);

    transition: width 0.25s ease;
}

.navigation a:not(.nav-appointment):hover {
    color: var(--mp-gold);
}

.navigation a:not(.nav-appointment):hover::after {
    width: 100%;
}

.nav-appointment {
    padding: 14px 20px !important;

    border: 1px solid var(--mp-gold) !important;

    background: var(--mp-gold);

    color: var(--mp-white) !important;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease !important;
}

.nav-appointment:hover {
    background: transparent;

    color: var(--mp-gold) !important;
}


/* ==========================================================
   MOBILE MENU BUTTON
========================================================== */

.menu-button {
    position: relative;

    width: 42px;
    height: 42px;

    padding: 0;

    display: none;

    align-items: center;
    justify-content: center;

    background: transparent;

    cursor: pointer;

    z-index: 10002;
}

.menu-button span {
    position: absolute;

    width: 24px;
    height: 1px;

    background: var(--mp-white);

    transition:
        transform 0.3s ease,
        top 0.3s ease,
        background 0.3s ease;
}

.menu-button span:first-child {
    top: 16px;
}

.menu-button span:last-child {
    top: 25px;
}

.menu-button.active span:first-child {
    top: 21px;

    transform: rotate(45deg);
}

.menu-button.active span:last-child {
    top: 21px;

    transform: rotate(-45deg);
}


/* ==========================================================
   GLOBAL BUTTONS
========================================================== */

.btn {
    min-height: 50px;

    padding: 0 27px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.5px;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
}

.btn-light {
    border: 1px solid var(--mp-gold);

    background: var(--mp-gold);

    color: var(--mp-white);
}

.btn-light:hover {
    background: var(--mp-gold-light);

    border-color: var(--mp-gold-light);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.65);

    background: transparent;

    color: var(--mp-white);
}

.btn-outline:hover {
    border-color: var(--mp-gold);

    color: var(--mp-gold);
}


/* ==========================================================
   HOME HERO
========================================================== */

.hero {
    position: relative;

    min-height: 100vh;

    padding: 175px 8% 100px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 75% 40%,
            rgba(201, 148, 53, 0.12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #101214 0%,
            #181b1f 55%,
            #101214 100%
        );

    color: var(--mp-white);
}

.hero::before {
    content: "";

    position: absolute;

    width: 550px;
    height: 550px;

    right: -220px;
    bottom: -220px;

    border: 1px solid rgba(201, 148, 53, 0.10);

    border-radius: 50%;
}

.hero-content {
    position: relative;

    width: 100%;
    max-width: 1000px;

    z-index: 5;
}

.eyebrow {
    margin-bottom: 25px;

    color: var(--mp-gold);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 4px;
}

.hero h1 {
    max-width: 1050px;

    margin-bottom: 38px;

    color: var(--mp-white);

    font-size: clamp(68px, 8vw, 122px);
    font-weight: 400;

    line-height: 0.88;

    letter-spacing: -6px;
}

.hero-text {
    max-width: 610px;

    margin-bottom: 40px;

    color: #babdc0;

    font-size: 15px;

    line-height: 1.85;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;
}


/* ==========================================================
   SCROLL MARKER
========================================================== */

.scroll {
    position: absolute;

    right: 6%;
    bottom: 40px;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 12px;

    color: var(--mp-white);

    z-index: 10;
}

.scroll span {
    font-size: 8px;

    letter-spacing: 3px;
}

.scroll-line {
    width: 1px;
    height: 55px;

    background: var(--mp-gold);
}


/* ==========================================================
   GENERAL SECTIONS
========================================================== */

.section {
    padding: 135px 8%;
}

.section-dark {
    padding: 135px 8%;

    background: var(--mp-black);

    color: var(--mp-white);
}

.section-label {
    margin-bottom: 55px;

    color: var(--mp-grey);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 3px;
}

.section-label.light {
    color: var(--mp-gold);
}

.section h2,
.section-dark h2,
.appointment h2 {
    font-size: clamp(48px, 6vw, 88px);
    font-weight: 400;

    line-height: 0.95;

    letter-spacing: -4px;
}


/* ==========================================================
   COMPANY
========================================================== */

.company {
    background: var(--mp-offwhite);
}

.two-columns {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 10%;
}

.section-copy {
    position: relative;

    padding: 35px 0 0 35px;

    border-left: 1px solid rgba(201, 148, 53, 0.55);
}

.section-copy p {
    margin-bottom: 24px;

    color: #666666;

    font-size: 14px;

    line-height: 1.9;
}

.section-copy .lead {
    color: #222222;

    font-size: 20px;

    line-height: 1.65;
}


/* ==========================================================
   HOME PROJECT CAROUSEL
========================================================== */

.home-project-carousel {
    position: relative;

    padding: 145px 0 150px;

    overflow: hidden;

    background: var(--mp-black);

    color: var(--mp-white);
}

.home-project-carousel::before {
    content: "";

    position: absolute;

    top: -300px;
    right: -260px;

    width: 750px;
    height: 750px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(201, 148, 53, 0.09),
            transparent 67%
        );

    pointer-events: none;
}

.home-carousel-heading {
    position: relative;

    width: min(1320px, calc(100% - 100px));

    margin: 0 auto 65px;

    display: grid;

    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(320px, 0.8fr);

    gap: 100px;

    align-items: end;

    z-index: 2;
}

.home-carousel-kicker {
    margin-bottom: 24px;

    color: var(--mp-gold);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 3.5px;
}

.home-carousel-heading h2 {
    margin: 0;

    color: var(--mp-white);

    font-size: clamp(62px, 6.5vw, 100px);
    font-weight: 400;

    line-height: 0.88;

    letter-spacing: -5px;
}

.home-carousel-heading-copy {
    max-width: 450px;

    padding-bottom: 5px;
}

.heading-line {
    display: block;

    width: 45px;
    height: 1px;

    margin-bottom: 22px;

    background: var(--mp-gold);
}

.home-carousel-heading-copy p {
    color: #8d9194;

    font-size: 13px;

    line-height: 1.9;
}


/* ==========================================================
   HOME CAROUSEL FRAME
========================================================== */

.home-carousel {
    position: relative;

    width: min(1320px, calc(100% - 100px));
    height: 650px;

    margin: 0 auto;

    overflow: hidden;

    background: #17191b;

    box-shadow:
        0 35px 90px rgba(0, 0, 0, 0.30);
}

.home-carousel-slide {
    position: absolute;

    inset: 0;

    opacity: 0;
    visibility: hidden;

    transform: scale(1.025);

    transition:
        opacity 0.85s ease,
        visibility 0.85s ease,
        transform 1.4s ease;
}

.home-carousel-slide.is-active {
    opacity: 1;
    visibility: visible;

    transform: scale(1);
}

.home-carousel-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.home-carousel-no-image {
    position: absolute;

    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--mp-dark-soft);

    color: var(--mp-grey);

    font-size: 12px;

    letter-spacing: 3px;
}

.home-carousel-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5, 7, 8, 0.94) 0%,
            rgba(5, 7, 8, 0.78) 30%,
            rgba(5, 7, 8, 0.45) 55%,
            rgba(5, 7, 8, 0.10) 100%
        ),
        linear-gradient(
            0deg,
            rgba(5, 7, 8, 0.55) 0%,
            transparent 55%
        );
}


/* ==========================================================
   HOME CAROUSEL CONTENT
========================================================== */

.home-carousel-content {
    position: absolute;

    inset: 0;

    padding: 60px 65px 82px;

    display: flex;
    align-items: flex-end;

    z-index: 5;
}

.home-carousel-project-number {
    position: absolute;

    top: 50px;
    left: 65px;

    color: rgba(255, 255, 255, 0.50);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
}

.home-carousel-project-info {
    width: min(720px, 75%);
    max-width: 720px;
}

.home-carousel-project-label {
    display: block;

    margin-bottom: 16px;

    color: var(--mp-gold);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 2.2px;
}

.home-carousel-project-info h3 {
    max-width: 720px;

    margin: 0 0 23px;

    color: var(--mp-white);

    font-size: clamp(43px, 4.8vw, 72px);
    font-weight: 400;

    line-height: 0.98;

    letter-spacing: -3px;
}

.home-carousel-project-meta {
    margin-bottom: 29px;

    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 10px 22px;

    color: #c6c8ca;

    font-size: 10px;
}

.home-carousel-project-meta span + span {
    position: relative;

    margin-left: 17px;
    padding-left: 23px;
}

.home-carousel-project-meta span + span::before {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: var(--mp-gold);

    transform: translateY(-50%);
}

.home-carousel-project-button {
    width: 230px;

    padding: 17px 19px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border: 1px solid rgba(255, 255, 255, 0.46);

    color: var(--mp-white);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.6px;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.home-carousel-project-button:hover {
    background: var(--mp-gold);

    border-color: var(--mp-gold);

    color: var(--mp-black);
}

.carousel-button-arrow {
    font-size: 17px;

    transition: transform 0.25s ease;
}

.home-carousel-project-button:hover .carousel-button-arrow {
    transform: translateX(5px);
}


/* ==========================================================
   HOME CAROUSEL ARROWS
========================================================== */

.home-carousel-arrow {
    position: absolute;

    top: 50%;

    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    transform: translateY(-50%);

    border: 1px solid rgba(255, 255, 255, 0.32);

    border-radius: 50%;

    background: rgba(10, 12, 13, 0.62);

    color: var(--mp-white);

    font-size: 29px;

    cursor: pointer;

    z-index: 20;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.home-carousel-arrow:hover {
    background: var(--mp-gold);

    border-color: var(--mp-gold);

    color: var(--mp-black);
}

.home-carousel-arrow-left {
    left: 25px;
}

.home-carousel-arrow-right {
    right: 25px;
}


/* ==========================================================
   HOME CAROUSEL FOOTER
========================================================== */

.home-carousel-footer {
    position: absolute;

    left: 65px;
    right: 65px;
    bottom: 28px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    z-index: 20;
}

.home-carousel-lines {
    display: flex;
    align-items: center;

    gap: 7px;
}

.home-carousel-line {
    width: 28px;
    height: 2px;

    padding: 0;

    background: rgba(255, 255, 255, 0.25);

    cursor: pointer;

    transition:
        width 0.3s ease,
        background 0.3s ease;
}

.home-carousel-line.is-active {
    width: 55px;

    background: var(--mp-gold);
}

.home-carousel-counter {
    display: flex;

    gap: 7px;

    color: #8d9092;

    font-size: 9px;

    letter-spacing: 1px;
}

#homeCarouselCurrent {
    color: var(--mp-white);
}

.home-carousel-empty {
    width: min(1320px, calc(100% - 100px));
    min-height: 400px;

    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.10);

    color: var(--mp-grey);
}

.home-carousel-empty span {
    margin-bottom: 15px;

    color: var(--mp-gold);

    font-size: 9px;

    letter-spacing: 3px;
}


/* ==========================================================
   PROJECT PORTFOLIO
========================================================== */

.projects-heading {
    margin-bottom: 75px;

    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(300px, 0.65fr);

    gap: 90px;

    align-items: end;
}

.projects-heading h2 {
    max-width: 900px;

    margin: 0;
}

.projects-introduction {
    max-width: 430px;

    padding-bottom: 8px;

    color: #85898c;

    font-size: 13px;

    line-height: 1.9;
}

.projects-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 65px 28px;
}

.project-card {
    position: relative;

    min-width: 0;
}

.project-image-link {
    display: block;

    overflow: hidden;
}

.project-image-wrapper {
    position: relative;

    width: 100%;
    aspect-ratio: 3 / 2;
    height: auto;

    overflow: hidden;

    background: #242424;
}

.project-image-wrapper img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center;

    transition: transform 0.7s ease;
}

.project-image-overlay {
    position: absolute;

    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(10, 10, 10, 0.10);

    opacity: 0;

    transition:
        opacity 0.35s ease,
        background 0.35s ease;
}

.project-image-overlay span {
    padding: 14px 20px;

    border: 1px solid rgba(255, 255, 255, 0.8);

    color: var(--mp-white);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;
}

.project-image-wrapper:hover img {
    transform: scale(1);
}

.project-image-wrapper:hover .project-image-overlay {
    opacity: 1;

    background: rgba(10, 10, 10, 0.42);
}

.project-placeholder {
    width: 100%;
    height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #292929;

    color: var(--mp-grey);

    font-size: 12px;

    letter-spacing: 4px;

    text-align: center;
}

.project-card-number {
    position: absolute;

    top: 17px;
    right: 17px;

    padding: 7px 9px;

    background: rgba(10, 10, 10, 0.72);

    color: var(--mp-white);

    font-size: 8px;

    letter-spacing: 1px;
}

.project-meta {
    padding-top: 20px;
}

.project-type {
    display: block;

    margin-bottom: 12px;

    color: var(--mp-gold);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 2px;
}

.project-meta h3 {
    margin-bottom: 13px;

    color: var(--mp-white);

    font-size: clamp(19px, 1.6vw, 25px);
    font-weight: 500;

    line-height: 1.25;

    letter-spacing: -0.4px;
}

.project-meta h3 a {
    transition: color 0.25s ease;
}

.project-meta h3 a:hover {
    color: var(--mp-gold);
}

.project-card-details {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 10px 17px;

    color: #85898c;

    font-size: 11px;
}

.project-card-details span + span {
    position: relative;

    margin-left: 10px;
    padding-left: 20px;
}

.project-card-details span + span::before {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: var(--mp-gold);

    transform: translateY(-50%);
}

.project-more-btn {
    width: 100%;

    margin-top: 20px;

    padding: 17px 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border: 1px solid rgba(255, 255, 255, 0.25);

    color: var(--mp-white);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.4px;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
}

.project-more-btn:hover {
    border-color: var(--mp-gold);

    background: var(--mp-gold);

    color: var(--mp-black);
}

.project-more-arrow {
    font-size: 18px;

    transition: transform 0.25s ease;
}

.project-more-btn:hover .project-more-arrow {
    transform: translateX(5px);
}


/* ==========================================================
   SERVICES
========================================================== */

.services {
    background: var(--mp-offwhite);
}

.services-list {
    border-top: 1px solid #cacac7;
}

.service-row {
    padding: 28px 0;

    display: grid;

    grid-template-columns: 60px 1fr;

    border-bottom: 1px solid #cacac7;

    transition:
        padding-left 0.25s ease,
        border-color 0.25s ease;
}

.service-row:hover {
    padding-left: 12px;

    border-color: var(--mp-gold);
}

.service-row span {
    color: var(--mp-gold);

    font-size: 10px;
}

.service-row h3 {
    font-size: 19px;
    font-weight: 500;
}


/* ==========================================================
   HOME APPOINTMENT CTA
========================================================== */

.appointment {
    padding: 145px 8%;

    background:
        radial-gradient(
            circle at center,
            #25282c 0%,
            #181b1f 55%,
            #101214 100%
        );

    color: var(--mp-white);

    text-align: center;
}

.appointment h2 {
    margin-bottom: 35px;
}

.appointment-home-copy {
    max-width: 600px;

    margin: 0 auto 40px;

    color: #929598;

    font-size: 14px;

    line-height: 1.8;
}


/* ==========================================================
   CONTACT
========================================================== */

.contact h2 {
    margin-bottom: 70px;
}

.contact-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    border-top: 1px solid #cacac7;
}

.contact-item {
    padding: 30px 30px 30px 0;

    border-bottom: 1px solid #cacac7;
}

.contact-item:not(:last-child) {
    border-right: 1px solid #ddddda;

    margin-right: 30px;
}

.contact-grid small {
    display: block;

    margin-bottom: 14px;

    color: var(--mp-gold);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 2px;
}

.contact-grid p {
    font-size: 14px;
}

.contact-link {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    color: var(--mp-text);

    font-size: 15px;

    transition: color 0.25s ease;
}

.contact-link:hover {
    color: var(--mp-gold);
}

.contact-link-arrow {
    color: var(--mp-gold);

    font-size: 17px;

    opacity: 0.70;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.contact-link:hover .contact-link-arrow {
    opacity: 1;

    transform: translate(4px, -4px);
}


/* ==========================================================
   FOOTER
========================================================== */

.footer {
    padding: 55px 8%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    background: #0c0e0f;

    color: var(--mp-white);
}

.footer div {
    display: flex;
    flex-direction: column;
}

.footer strong {
    letter-spacing: 4px;
}

.footer div span {
    margin-top: 6px;

    color: var(--mp-gold);

    font-size: 8px;

    letter-spacing: 5px;
}

.footer p,
.footer > a {
    color: var(--mp-grey);

    font-size: 9px;

    letter-spacing: 1px;
}

.footer > a {
    transition: color 0.25s ease;
}

.footer > a:hover {
    color: var(--mp-gold);
}


/* ==========================================================
   APPOINTMENT PAGE
========================================================== */

.appointment-page {
    min-height: 100vh;

    background: #111315;

    color: var(--mp-white);
}

.appointment-main {
    min-height: 100vh;

    padding: 150px 0 100px;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(201, 148, 53, 0.08),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #111315 0%,
            #171a1d 55%,
            #111315 100%
        );
}

.appointment-shell {
    width: min(1320px, calc(100% - 90px));

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(340px, 0.82fr)
        minmax(520px, 1.18fr);

    gap: 7%;

    align-items: start;
}


/* ==========================================================
   APPOINTMENT INTRO
========================================================== */

.appointment-intro {
    padding-top: 25px;
}

.appointment-kicker {
    margin-bottom: 26px;

    display: flex;
    align-items: center;

    gap: 14px;

    color: var(--mp-gold);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2.5px;
}

.appointment-kicker-line {
    width: 42px;
    height: 1px;

    background: var(--mp-gold);
}

.appointment-intro h1 {
    max-width: 560px;

    margin: 0 0 32px;

    color: var(--mp-white);

    font-size: clamp(50px, 5vw, 76px);
    font-weight: 400;

    line-height: 0.93;

    letter-spacing: -4px;
}

.appointment-lead {
    max-width: 470px;

    margin-bottom: 15px;

    color: var(--mp-white);

    font-size: 17px;

    line-height: 1.6;
}

.appointment-copy {
    max-width: 470px;

    color: #989b9e;

    font-size: 14px;

    line-height: 1.85;
}


/* ==========================================================
   APPOINTMENT CONTACT
========================================================== */

.appointment-contact-box {
    max-width: 480px;

    margin-top: 48px;

    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.appointment-contact-item {
    padding: 22px 0;

    display: grid;

    grid-template-columns: 40px 1fr;

    gap: 14px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.appointment-contact-number {
    color: var(--mp-gold);

    font-size: 10px;
    font-weight: 700;
}

.appointment-contact-item small {
    display: block;

    margin-bottom: 7px;

    color: #707478;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.appointment-contact-item p,
.appointment-contact-item a {
    color: #dddddd;

    font-size: 13px;

    line-height: 1.5;
}

.appointment-contact-item a {
    transition: color 0.25s ease;
}

.appointment-contact-item a:hover {
    color: var(--mp-gold);
}


/* ==========================================================
   APPOINTMENT FORM CARD
========================================================== */

.appointment-form-card {
    position: relative;

    width: 100%;

    padding: 42px 44px 45px;

    border: 1px solid rgba(255, 255, 255, 0.10);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.015)
        );

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.22);
}

.appointment-form-card::before {
    content: "";

    position: absolute;

    top: -1px;
    left: -1px;

    width: 100px;
    height: 2px;

    background: var(--mp-gold);
}

.appointment-form-heading {
    margin-bottom: 36px;
    padding-bottom: 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.appointment-form-heading > span {
    color: var(--mp-white);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
}

.appointment-form-heading p {
    color: #737679;

    font-size: 10px;
}


/* ==========================================================
   APPOINTMENT FORM
========================================================== */

.appointment-form {
    width: 100%;
}

.form-row {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 28px;
}

.form-group {
    width: 100%;

    margin-bottom: 29px;

    display: flex;
    flex-direction: column;
}

.form-group-full {
    width: 100%;
}

.form-group label {
    margin-bottom: 11px;

    color: #96999c;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    display: block;

    width: 100%;
    min-width: 0;

    padding: 14px 0 15px;

    border: none;
    border-bottom: 1px solid #45494d;

    border-radius: 0;

    outline: none;

    background: transparent;

    color: var(--mp-white);

    font-family: "Inter", Arial, Helvetica, sans-serif;

    font-size: 14px;

    transition:
        border-color 0.25s ease,
        color 0.25s ease;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-bottom-color: #73777b;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-bottom-color: var(--mp-gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #55595d;

    opacity: 1;
}

.form-group textarea {
    min-height: 135px;

    resize: vertical;

    line-height: 1.7;
}

.select-wrapper {
    position: relative;

    width: 100%;
}

.select-wrapper select {
    width: 100%;

    cursor: pointer;
}

.form-group select option {
    background: #171a1d;

    color: var(--mp-white);
}

.form-group input[type="date"] {
    color-scheme: dark;
}


/* ==========================================================
   APPOINTMENT PRIVACY
========================================================== */

.appointment-privacy {
    max-width: 620px;

    margin: 0 0 26px;

    color: #666a6d;

    font-size: 10px;

    line-height: 1.65;
}


/* ==========================================================
   APPOINTMENT SUBMIT
========================================================== */

.form-submit {
    width: 100%;
    min-height: 58px;

    margin: 0;
    padding: 0 23px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border: 1px solid var(--mp-gold);

    background: var(--mp-gold);

    color: var(--mp-white);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.6px;

    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.form-submit:hover {
    background: transparent;

    color: var(--mp-gold);

    border-color: var(--mp-gold);
}

.form-submit-arrow {
    font-size: 18px;

    transition: transform 0.25s ease;
}

.form-submit:hover .form-submit-arrow {
    transform: translateX(5px);
}


/* ==========================================================
   APPOINTMENT MESSAGES
========================================================== */

.form-success {
    margin-bottom: 28px;

    padding: 17px 19px;

    display: flex;
    align-items: center;

    gap: 14px;

    border: 1px solid rgba(201, 148, 53, 0.55);

    background: rgba(201, 148, 53, 0.08);

    color: #eeeeee;

    font-size: 12px;

    line-height: 1.6;
}

.form-success-icon {
    position: relative;

    width: 28px;
    height: 28px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--mp-gold);
}

.form-success-icon::before {
    content: "";

    width: 6px;
    height: 10px;

    margin-top: -3px;

    border-right: 2px solid var(--mp-white);
    border-bottom: 2px solid var(--mp-white);

    transform: rotate(45deg);
}

.appointment-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}


/* ==========================================================
   PROJECT DETAIL
========================================================== */

.pd-page {
    margin: 0;

    background: var(--mp-offwhite);

    color: #161616;
}

.pd-main {
    padding-top: var(--header-height);
}

.pd-breadcrumb {
    width: min(1380px, calc(100% - 70px));

    margin: 0 auto;

    padding: 27px 0;

    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 12px;

    color: #888888;

    font-size: 10px;
}

.pd-breadcrumb a {
    transition: color 0.2s ease;
}

.pd-breadcrumb a:hover {
    color: var(--mp-gold);
}


/* ==========================================================
   PROJECT DETAIL LAYOUT
========================================================== */

.pd-layout {
    width: min(1380px, calc(100% - 70px));

    margin: 0 auto 90px;

    display: grid;

    grid-template-columns:
        minmax(0, 1.72fr)
        minmax(330px, 0.78fr);

    gap: 48px;

    align-items: start;
}

.pd-gallery {
    width: 100%;

    min-width: 0;
}


/* ==========================================================
   PROJECT DETAIL STAGE
========================================================== */

.pd-stage {
    position: relative;

    width: 100%;
    height: 570px;

    overflow: hidden;

    background: #101010;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.08);
}

.pd-stage > img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    background: #101010;

    transition: opacity 0.18s ease;
}


/* ==========================================================
   PROJECT DETAIL ARROWS
========================================================== */

.pd-arrow {
    position: absolute;

    top: 50%;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    transform: translateY(-50%);

    border: 1px solid rgba(255, 255, 255, 0.35);

    border-radius: 50%;

    background: rgba(10, 10, 10, 0.72);

    color: var(--mp-white);

    font-size: 31px;

    cursor: pointer;

    z-index: 20;

    transition:
        background 0.25s ease,
        border-color 0.25s ease;
}

.pd-arrow:hover {
    background: var(--mp-gold);

    border-color: var(--mp-gold);
}

.pd-arrow-left {
    left: 18px;
}

.pd-arrow-right {
    right: 18px;
}


/* ==========================================================
   PROJECT FULLSCREEN BUTTON
========================================================== */

.pd-fullscreen-button {
    position: absolute;

    top: 15px;
    left: 15px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.35);

    border-radius: 50%;

    background: rgba(10, 10, 10, 0.75);

    cursor: pointer;

    z-index: 30;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.pd-fullscreen-button:hover {
    background: var(--mp-gold);

    border-color: var(--mp-gold);

    transform: scale(1.05);
}

.pd-fullscreen-icon {
    position: relative;

    width: 14px;
    height: 14px;
}

.pd-fullscreen-icon::before,
.pd-fullscreen-icon::after {
    content: "";

    position: absolute;

    inset: 0;

    border-color: var(--mp-white);
}

.pd-fullscreen-icon::before {
    border-top: 2px solid var(--mp-white);
    border-left: 2px solid var(--mp-white);

    width: 6px;
    height: 6px;

    top: 0;
    left: 0;
}

.pd-fullscreen-icon::after {
    width: 6px;
    height: 6px;

    right: 0;
    bottom: 0;
    left: auto;
    top: auto;

    border-right: 2px solid var(--mp-white);
    border-bottom: 2px solid var(--mp-white);
}


/* ==========================================================
   PROJECT COUNTER
========================================================== */

.pd-counter {
    position: absolute;

    top: 15px;
    right: 15px;

    padding: 8px 11px;

    background: rgba(0, 0, 0, 0.78);

    color: var(--mp-white);

    font-size: 10px;

    z-index: 20;
}


/* ==========================================================
   PROJECT CAPTION
========================================================== */

.pd-caption {
    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;

    padding: 60px 24px 21px;

    background:
        linear-gradient(
            transparent,
            rgba(0, 0, 0, 0.85)
        );

    color: var(--mp-white);

    font-size: 11px;

    pointer-events: none;
}


/* ==========================================================
   PROJECT THUMBNAILS
========================================================== */

.pd-thumbnails {
    width: 100%;

    margin-top: 9px;
    padding-bottom: 8px;

    display: flex;

    flex-direction: row;
    flex-wrap: nowrap;

    gap: 7px;

    overflow-x: auto;
    overflow-y: hidden;

    scrollbar-width: thin;
    scrollbar-color: var(--mp-gold) #dddddd;
}

.pd-thumb {
    position: relative;

    flex: 0 0 82px;

    width: 82px;
    min-width: 82px;
    height: 65px;

    padding: 0;

    overflow: hidden;

    border: 2px solid transparent;

    background: #111111;

    opacity: 0.55;

    cursor: pointer;

    transition:
        opacity 0.2s ease,
        border-color 0.2s ease;
}

.pd-thumb > img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.pd-thumb:hover {
    opacity: 1;
}

.pd-thumb-active {
    opacity: 1;

    border-color: var(--mp-gold);
}

.pd-thumb span {
    position: absolute;

    left: 3px;
    bottom: 3px;

    padding: 2px 4px;

    background: rgba(0, 0, 0, 0.75);

    color: var(--mp-white);

    font-size: 7px;
}


/* ==========================================================
   PROJECT INFORMATION
========================================================== */

.pd-info {
    position: sticky;

    top: 120px;

    width: 100%;

    padding: 12px 0 20px;
}

.pd-status {
    display: inline-block;

    margin-bottom: 22px;

    padding: 7px 11px;

    border: 1px solid var(--mp-gold);

    color: var(--mp-gold);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1px;
}

.pd-info h1 {
    margin: 0 0 28px;

    color: #161616;

    font-size: clamp(33px, 2.8vw, 47px);
    font-weight: 500;

    line-height: 1.07;

    letter-spacing: -1.7px;
}

.pd-facts {
    display: flex;
    flex-direction: column;

    gap: 18px;
}

.pd-fact {
    display: flex;
    align-items: flex-start;

    gap: 13px;
}

.pd-fact-icon {
    position: relative;

    width: 14px;
    min-width: 14px;
    height: 14px;

    margin-top: 3px;

    font-size: 0;

    overflow: hidden;
}

.pd-fact-icon::before {
    content: "";

    position: absolute;

    left: 3px;
    top: 3px;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--mp-gold);
}

.pd-fact small {
    display: block;

    margin-bottom: 5px;

    color: #aaaaaa;

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 1.3px;
}

.pd-fact p {
    margin: 0;

    color: #575757;

    font-size: 11px;

    line-height: 1.55;
}

.pd-line {
    width: 100%;
    height: 1px;

    margin: 28px 0;

    background: #d7d7d3;
}

.pd-section-title {
    margin-bottom: 17px;

    color: #222222;

    font-size: 8px !important;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.pd-description {
    color: #646464;

    font-size: 12px;

    line-height: 1.85;
}

.pd-description p {
    margin-bottom: 15px;
}


/* ==========================================================
   PROJECT FEATURES
========================================================== */

.pd-features {
    margin: 0;
    padding: 0;

    list-style: none;
}

.pd-features li {
    position: relative;

    margin-bottom: 13px;

    padding-left: 24px;

    color: #5c5c5c;

    font-size: 11px;

    line-height: 1.6;
}

.pd-features li::before {
    content: "";

    position: absolute;

    left: 2px;
    top: 7px;

    width: 7px;
    height: 7px;

    border: 1px solid var(--mp-gold);

    background: transparent;

    transform: rotate(45deg);
}


/* ==========================================================
   PROJECT APPOINTMENT
========================================================== */

.pd-appointment {
    width: 100%;

    margin-top: 30px;
    padding: 17px 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border: 1px solid var(--mp-gold);

    color: #171717;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1px;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.pd-appointment:hover {
    background: var(--mp-gold);

    color: var(--mp-white);
}

.pd-appointment-arrow {
    font-size: 18px;

    transition: transform 0.25s ease;
}

.pd-appointment:hover .pd-appointment-arrow {
    transform: translateX(5px);
}


/* ==========================================================
   LIGHTBOX
========================================================== */

.pd-no-scroll {
    overflow: hidden;
}

.pd-lightbox {
    position: fixed;

    inset: 0;

    width: 100%;
    height: 100vh;

    display: none;
    align-items: center;
    justify-content: center;

    background: rgba(5, 5, 5, 0.98);

    z-index: 99999;
}

.pd-lightbox-open {
    display: flex;
}

.pd-lightbox-image-wrapper {
    position: relative;

    width: calc(100% - 180px);
    height: calc(100vh - 90px);

    display: flex;
    align-items: center;
    justify-content: center;
}

.pd-lightbox-image-wrapper img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

.pd-lightbox-close {
    position: absolute;

    top: 25px;
    right: 30px;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.4);

    border-radius: 50%;

    background: rgba(0, 0, 0, 0.45);

    color: var(--mp-white);

    font-size: 32px;

    cursor: pointer;

    z-index: 100;

    transition:
        background 0.25s ease,
        border-color 0.25s ease;
}

.pd-lightbox-close:hover {
    background: var(--mp-gold);

    border-color: var(--mp-gold);
}

.pd-lightbox-arrow {
    position: absolute;

    top: 50%;

    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    transform: translateY(-50%);

    border: 1px solid rgba(255, 255, 255, 0.35);

    border-radius: 50%;

    background: rgba(0, 0, 0, 0.5);

    color: var(--mp-white);

    font-size: 38px;

    cursor: pointer;

    z-index: 100;

    transition:
        background 0.25s ease,
        border-color 0.25s ease;
}

.pd-lightbox-arrow:hover {
    background: var(--mp-gold);

    border-color: var(--mp-gold);
}

.pd-lightbox-left {
    left: 30px;
}

.pd-lightbox-right {
    right: 30px;
}

.pd-lightbox-counter {
    position: absolute;

    top: 30px;
    left: 30px;

    padding: 8px 12px;

    background: rgba(0, 0, 0, 0.55);

    color: var(--mp-white);

    font-size: 11px;

    letter-spacing: 1px;
}

.pd-lightbox-caption {
    position: absolute;

    left: 50%;
    bottom: 0;

    transform: translateX(-50%);

    max-width: 700px;

    padding: 12px 20px;

    background: rgba(0, 0, 0, 0.65);

    color: var(--mp-white);

    font-size: 12px;

    text-align: center;
}


/* ==========================================================
   RESPONSIVE - 1200
========================================================== */

@media (max-width: 1200px) {

    .header {
        padding: 0 4%;
    }

    .navigation {
        gap: 15px;
    }

    .navigation a {
        font-size: 8px;
    }

    .nav-appointment {
        padding: 13px 16px !important;
    }

    .brand-logo-link {
        width: 190px;

        flex-basis: 190px;
    }

    .brand-logo {
        width: 175px;

        max-height: 62px;
    }

    .appointment-shell {
        width: calc(100% - 60px);

        grid-template-columns:
            minmax(300px, 0.8fr)
            minmax(430px, 1.2fr);

        gap: 5%;
    }

    .appointment-form-card {
        padding: 36px;
    }

    .pd-layout {
        grid-template-columns:
            minmax(0, 1.45fr)
            minmax(290px, 0.8fr);

        gap: 28px;
    }

    .pd-stage {
        height: 500px;
    }
}


/* ==========================================================
   RESPONSIVE - TABLET / MOBILE NAV
========================================================== */

@media (max-width: 900px) {

    :root {
        --header-height: 80px;
    }

    .header {
        height: var(--header-height);

        padding: 0 22px;

        gap: 15px;
    }

    .brand-logo-link {
        width: 155px;
        height: 60px;

        flex: 0 0 155px;
    }

    .brand-logo {
        width: 145px;

        max-height: 55px;
    }


    /* MOBILE MENU */

    .menu-button {
        display: flex;

        margin-left: auto;
    }

    .navigation {
        position: fixed;

        top: var(--header-height);
        left: 0;
        right: 0;

        width: 100%;

        max-height: 0;

        padding: 0 24px;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 0;

        overflow: hidden;

        background: rgba(12, 14, 16, 0.99);

        border-bottom: 1px solid rgba(255, 255, 255, 0.08);

        opacity: 0;
        visibility: hidden;

        transition:
            max-height 0.4s ease,
            padding 0.4s ease,
            opacity 0.3s ease,
            visibility 0.3s ease;
    }

    .navigation.open {
        max-height: 550px;

        padding: 20px 24px 28px;

        opacity: 1;
        visibility: visible;
    }

    .navigation a,
    .navigation a:not(.nav-appointment) {
        width: 100%;

        padding: 17px 0;

        display: block;

        border-bottom: 1px solid rgba(255, 255, 255, 0.08);

        color: var(--mp-white);

        font-size: 10px;

        letter-spacing: 1.5px;
    }

    .navigation a:not(.nav-appointment)::after {
        display: none;
    }

    .navigation .nav-appointment {
        width: 100%;

        margin-top: 18px;

        padding: 15px 18px !important;

        display: flex !important;
        align-items: center;
        justify-content: center;

        border-bottom: 1px solid var(--mp-gold);

        font-size: 9px !important;
    }


    /* HOME HERO */

    .hero {
        min-height: 90vh;

        padding: 140px 25px 80px;
    }

    .hero h1 {
        font-size: clamp(50px, 14vw, 72px);

        letter-spacing: -4px;
    }

    .hero-text {
        font-size: 14px;
    }

    .scroll {
        display: none;
    }


    /* GENERAL */

    .section,
    .section-dark {
        padding: 90px 25px;
    }

    .two-columns {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .section-copy {
        padding: 30px 0 0;

        border-left: none;
        border-top: 1px solid rgba(201, 148, 53, 0.45);
    }


    /* HOME CAROUSEL */

    .home-project-carousel {
        padding: 100px 0;
    }

    .home-carousel-heading {
        width: calc(100% - 50px);

        grid-template-columns: 1fr;

        gap: 35px;

        margin-bottom: 45px;
    }

    .home-carousel-heading h2 {
        font-size: 58px;

        letter-spacing: -3px;
    }

    .home-carousel-heading-copy {
        max-width: 520px;
    }

    .home-carousel {
        width: calc(100% - 40px);

        height: 590px;
    }

    .home-carousel-content {
        padding: 35px 28px 75px;
    }

    .home-carousel-project-number {
        top: 28px;
        left: 28px;
    }

    .home-carousel-project-info {
        width: 100%;
    }

    .home-carousel-project-info h3 {
        font-size: 42px;

        letter-spacing: -2px;
    }

    .home-carousel-footer {
        left: 28px;
        right: 28px;
    }

    .home-carousel-arrow {
        width: 44px;
        height: 44px;
    }

    .home-carousel-arrow-left {
        left: 13px;
    }

    .home-carousel-arrow-right {
        right: 13px;
    }


    /* PROJECT GRID */

    .projects-heading {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-image-wrapper,
    .project-placeholder {
        height: 430px;
    }


    /* CONTACT */

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-item {
        margin-right: 0 !important;

        border-right: none !important;
    }


    /* FOOTER */

    .footer {
        padding: 45px 25px;

        flex-direction: column;
        align-items: flex-start;

        gap: 20px;
    }


    /* APPOINTMENT */

    .appointment-main {
        padding: 125px 0 70px;
    }

    .appointment-shell {
        width: calc(100% - 40px);

        grid-template-columns: 1fr;

        gap: 55px;
    }

    .appointment-intro {
        padding-top: 0;
    }

    .appointment-intro h1 {
        font-size: clamp(46px, 13vw, 62px);

        letter-spacing: -3px;
    }

    .appointment-contact-box {
        margin-top: 35px;
    }

    .appointment-form-card {
        padding: 30px 25px;
    }

    .appointment-form-heading {
        flex-direction: column;
        align-items: flex-start;

        gap: 8px;
    }

    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }


    /* PROJECT DETAIL */

    .pd-main {
        padding-top: var(--header-height);
    }

    .pd-breadcrumb,
    .pd-layout {
        width: calc(100% - 40px);
    }

    .pd-layout {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .pd-stage {
        height: 430px;
    }

    .pd-info {
        position: static;
    }

    .pd-thumb {
        flex-basis: 70px;

        width: 70px;
        min-width: 70px;

        height: 56px;
    }

    .pd-lightbox-image-wrapper {
        width: calc(100% - 30px);

        height: calc(100vh - 120px);
    }

    .pd-lightbox-arrow {
        width: 44px;
        height: 44px;

        font-size: 30px;
    }

    .pd-lightbox-left {
        left: 15px;
    }

    .pd-lightbox-right {
        right: 15px;
    }

    .pd-lightbox-close {
        top: 15px;
        right: 15px;
    }
}


/* ==========================================================
   RESPONSIVE - MOBILE
========================================================== */

@media (max-width: 600px) {

    .header {
        padding: 0 16px;
    }

    .brand-logo-link {
        width: 135px;

        flex-basis: 135px;
    }

    .brand-logo {
        width: 128px;
    }


    /* HERO */

    .hero {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero h1 {
        font-size: 47px;

        line-height: 0.92;

        letter-spacing: -3px;
    }

    .hero-actions {
        flex-direction: column;

        align-items: flex-start;
    }

    .hero-actions .btn {
        width: 100%;
    }


    /* HEADINGS */

    .section h2,
    .section-dark h2,
    .appointment h2 {
        font-size: 43px;

        letter-spacing: -2px;
    }


    /* HOME CAROUSEL */

    .home-project-carousel {
        padding: 80px 0;
    }

    .home-carousel-heading {
        width: calc(100% - 40px);

        margin-bottom: 35px;
    }

    .home-carousel-heading h2 {
        font-size: 48px;
    }

    .home-carousel {
        width: calc(100% - 24px);

        height: 520px;
    }

    .home-carousel-content {
        padding:
            30px
            20px
            75px;
    }

    .home-carousel-project-number {
        top: 23px;
        left: 20px;
    }

    .home-carousel-project-info h3 {
        font-size: 34px;
    }

    .home-carousel-project-meta {
        font-size: 9px;
    }

    .home-carousel-project-meta span + span {
        margin-left: 6px;

        padding-left: 16px;
    }

    .home-carousel-project-button {
        width: 205px;
    }

    .home-carousel-arrow {
        width: 40px;
        height: 40px;

        font-size: 24px;
    }

    .home-carousel-footer {
        left: 20px;
        right: 20px;
    }

    .home-carousel-lines {
        max-width: 65%;

        overflow: hidden;
    }


    /* PROJECTS */

    .project-image-wrapper,
    .project-placeholder {
        height: 340px;
    }


    /* APPOINTMENT CTA */

    .appointment {
        padding: 100px 20px;
    }


    /* APPOINTMENT PAGE */

    .appointment-shell {
        width: calc(100% - 28px);
    }

    .appointment-form-card {
        padding: 25px 18px;
    }

    .appointment-intro h1 {
        font-size: 45px;
    }


    /* PROJECT DETAIL */

    .pd-breadcrumb,
    .pd-layout {
        width: calc(100% - 28px);
    }

    .pd-breadcrumb {
        font-size: 9px;
    }

    .pd-stage {
        height: 360px;
    }

    .pd-arrow {
        width: 40px;
        height: 40px;

        font-size: 26px;
    }

    .pd-arrow-left {
        left: 10px;
    }

    .pd-arrow-right {
        right: 10px;
    }

    .pd-fullscreen-button {
        top: 10px;
        left: 10px;

        width: 38px;
        height: 38px;
    }

    .pd-counter {
        top: 10px;
        right: 10px;
    }

    .pd-info h1 {
        font-size: 34px;

        letter-spacing: -1px;
    }

    .pd-lightbox-caption {
        width: calc(100% - 40px);
    }
}


/* ==========================================================
   EXTRA SMALL
========================================================== */

@media (max-width: 420px) {

    .brand-logo-link {
        width: 120px;

        flex-basis: 120px;
    }

    .brand-logo {
        width: 118px;
    }

    .hero h1 {
        font-size: 41px;
    }

    .home-carousel-heading h2 {
        font-size: 42px;
    }

    .home-carousel-project-info h3 {
        font-size: 30px;
    }

    .home-carousel {
        height: 500px;
    }

    .project-image-wrapper,
    .project-placeholder {
        height: 300px;
    }

    .pd-stage {
        height: 310px;
    }
}

/* ==========================================================
   ==========================================================
   MPASTANIS IKE HOME
   PREMIUM HOME REDESIGN
   ==========================================================
   ========================================================== */


/* ==========================================================
   PREMIUM COMMON
========================================================== */

.premium-container {
    width: min(1380px, calc(100% - 100px));
    margin: 0 auto;
}

.premium-gold-text {
    color: var(--mp-gold);
}

.premium-button {
    min-height: 56px;

    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    gap: 35px;

    border: 1px solid transparent;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.5px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.premium-button-arrow {
    font-size: 18px;

    transition: transform 0.3s ease;
}

.premium-button:hover .premium-button-arrow {
    transform: translateX(5px);
}

.premium-button-gold {
    background: var(--mp-gold);

    border-color: var(--mp-gold);

    color: #ffffff;
}

.premium-button-gold:hover {
    background: #e0aa47;

    border-color: #e0aa47;

    color: #111315;
}

.premium-button-outline {
    background: transparent;

    border-color: rgba(255, 255, 255, 0.45);

    color: #ffffff;
}

.premium-button-outline:hover {
    border-color: var(--mp-gold);

    color: var(--mp-gold);
}


/* ==========================================================
   PREMIUM HERO
========================================================== */

.premium-hero {
    position: relative;

    width: 100%;
    min-height: 100vh;

    overflow: hidden;

    background: #111315;

    color: #ffffff;
}


/* IMAGE */

.premium-hero-media {
    position: absolute;

    inset: 0;
}

.premium-hero-image {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    transform: scale(1.02);

    animation: premiumHeroZoom 14s ease-out forwards;
}

@keyframes premiumHeroZoom {

    from {
        transform: scale(1.06);
    }

    to {
        transform: scale(1);
    }

}


/* DARK CINEMATIC OVERLAY */

.premium-hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5, 7, 8, 0.97) 0%,
            rgba(5, 7, 8, 0.90) 25%,
            rgba(5, 7, 8, 0.64) 52%,
            rgba(5, 7, 8, 0.25) 78%,
            rgba(5, 7, 8, 0.20) 100%
        ),
        linear-gradient(
            0deg,
            rgba(5, 7, 8, 0.88) 0%,
            rgba(5, 7, 8, 0.05) 50%,
            rgba(5, 7, 8, 0.20) 100%
        );
}


/* ARCHITECTURAL GRID */

.premium-hero-grid {
    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        );

    background-size:
        25% 100%,
        100% 25%;

    opacity: 0.28;

    pointer-events: none;
}


/* INNER */

.premium-hero-inner {
    position: relative;

    width: min(1380px, calc(100% - 100px));

    min-height: 100vh;

    margin: 0 auto;

    padding:
        calc(var(--header-height) + 70px)
        0
        115px;

    display: grid;

    grid-template-columns:
        minmax(0, 1.45fr)
        minmax(300px, 0.55fr);

    gap: 90px;

    align-items: center;

    z-index: 5;
}


/* MAIN CONTENT */

.premium-hero-content {
    max-width: 900px;
}

.premium-hero-kicker {
    margin-bottom: 30px;

    display: flex;
    align-items: center;

    gap: 16px;

    color: var(--mp-gold);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 3px;
}

.premium-kicker-line {
    width: 42px;
    height: 1px;

    background: var(--mp-gold);
}

.premium-hero h1 {
    margin: 0 0 38px;

    color: #ffffff;

    font-size: clamp(72px, 8vw, 128px);
    font-weight: 300;

    line-height: 0.84;

    letter-spacing: -7px;
}

.premium-hero h1 span {
    color: #ffffff;
}

.premium-hero-lead {
    max-width: 590px;

    margin-bottom: 38px;

    color: rgba(255, 255, 255, 0.70);

    font-size: 14px;

    line-height: 1.9;
}

.premium-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 12px;
}


/* ==========================================================
   HERO PROJECT CARD
========================================================== */

.premium-hero-project {
    align-self: end;

    margin-bottom: 45px;

    padding: 28px 0 0;

    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.premium-hero-project-top {
    margin-bottom: 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: rgba(255, 255, 255, 0.55);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.8px;
}

.premium-hero-project-line {
    width: 42px;
    height: 1px;

    margin-bottom: 23px;

    background: var(--mp-gold);
}

.premium-hero-project h2 {
    margin-bottom: 18px;

    color: #ffffff;

    font-size: clamp(24px, 2vw, 34px);
    font-weight: 400;

    line-height: 1.15;

    letter-spacing: -1px;
}

.premium-hero-project-meta {
    margin-bottom: 27px;

    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 10px 20px;

    color: rgba(255, 255, 255, 0.60);

    font-size: 10px;
}

.premium-hero-project-meta span + span {
    position: relative;

    padding-left: 20px;
}

.premium-hero-project-meta span + span::before {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: var(--mp-gold);

    transform: translateY(-50%);
}

.premium-project-link {
    display: inline-flex;
    align-items: center;

    gap: 25px;

    color: #ffffff;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.5px;

    transition: color 0.25s ease;
}

.premium-project-link span {
    color: var(--mp-gold);

    font-size: 18px;

    transition: transform 0.25s ease;
}

.premium-project-link:hover {
    color: var(--mp-gold);
}

.premium-project-link:hover span {
    transform: translateX(5px);
}


/* ==========================================================
   HERO BOTTOM
========================================================== */

.premium-hero-bottom {
    position: absolute;

    left: 5%;
    right: 5%;
    bottom: 25px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    z-index: 6;
}

.premium-hero-bottom-left {
    display: flex;
    align-items: center;

    gap: 28px;

    color: rgba(255, 255, 255, 0.42);

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 2px;
}

.premium-hero-bottom-left span {
    position: relative;
}

.premium-hero-bottom-left span + span {
    padding-left: 20px;
}

.premium-hero-bottom-left span + span::before {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 3px;
    height: 3px;

    border-radius: 50%;

    background: var(--mp-gold);

    transform: translateY(-50%);
}

.premium-scroll-link {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 11px;

    color: rgba(255, 255, 255, 0.60);
}

.premium-scroll-link > span:first-child {
    font-size: 7px;

    letter-spacing: 3px;
}

.premium-scroll-line {
    width: 1px;
    height: 45px;

    background: var(--mp-gold);
}


/* ==========================================================
   PREMIUM COMPANY
========================================================== */

.premium-company {
    padding: 145px 0 120px;

    background: #f2f0e9;

    color: #171717;
}

.premium-section-number {
    margin-bottom: 65px;

    display: flex;
    align-items: center;

    gap: 18px;

    color: var(--mp-gold);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 2.5px;
}

.premium-section-number span:first-child {
    min-width: 25px;
}

.premium-company-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(350px, 0.65fr);

    gap: 11%;

    align-items: start;
}

.premium-company-title h2 {
    margin: 0;

    max-width: 850px;

    color: #151515;

    font-size: clamp(55px, 6vw, 94px);
    font-weight: 400;

    line-height: 0.92;

    letter-spacing: -5px;
}

.premium-company-title h2 span {
    color: var(--mp-gold);
}

.premium-company-copy {
    padding-top: 7px;
}

.premium-copy-line {
    width: 50px;
    height: 1px;

    margin-bottom: 28px;

    background: var(--mp-gold);
}

.premium-company-copy p {
    margin-bottom: 20px;

    color: #73736e;

    font-size: 13px;

    line-height: 1.9;
}

.premium-company-copy .premium-company-lead {
    color: #252525;

    font-size: 17px;

    line-height: 1.75;
}

.premium-text-link {
    margin-top: 15px;

    display: inline-flex;
    align-items: center;

    gap: 25px;

    color: #171717;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.6px;
}

.premium-text-link span {
    color: var(--mp-gold);

    font-size: 17px;

    transition: transform 0.25s ease;
}

.premium-text-link:hover span {
    transform: translateX(5px);
}


/* ==========================================================
   COMPANY VALUES
========================================================== */

.premium-values {
    margin-top: 110px;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    border-top: 1px solid #d0cec6;
}

.premium-value {
    min-height: 210px;

    padding: 28px 25px 15px 0;

    border-bottom: 1px solid #d0cec6;
}

.premium-value:not(:last-child) {
    margin-right: 25px;

    border-right: 1px solid #d0cec6;
}

.premium-value-number {
    display: block;

    margin-bottom: 42px;

    color: var(--mp-gold);

    font-size: 8px;
    font-weight: 800;
}

.premium-value h3 {
    margin-bottom: 13px;

    color: #222222;

    font-size: 15px;
    font-weight: 600;

    letter-spacing: 0.6px;
}

.premium-value p {
    max-width: 250px;

    color: #85857f;

    font-size: 11px;

    line-height: 1.75;
}


/* ==========================================================
   CAROUSEL DESIGN ENHANCEMENT
========================================================== */

.home-project-carousel {
    padding-top: 150px;

    background:
        radial-gradient(
            circle at 90% 15%,
            rgba(201, 148, 53, 0.11),
            transparent 30%
        ),
        #0c0e0f;
}

.home-carousel-heading h2 span {
    display: block;
}

.home-carousel {
    height: min(680px, 72vh);

    min-height: 600px;

    border: 1px solid rgba(255, 255, 255, 0.06);
}

.home-carousel-slide::after {
    content: "";

    position: absolute;

    inset: 0;

    border: 1px solid rgba(255, 255, 255, 0.035);

    pointer-events: none;

    z-index: 4;
}


/* ==========================================================
   PORTFOLIO ENHANCEMENT
========================================================== */

.projects {
    background: #111315;
}

.projects-heading h2 span {
    display: block;
}

.projects-grid {
    row-gap: 90px;
}

.project-image-wrapper {
    height: auto;
    aspect-ratio: 3 / 2;
}

.project-card:nth-child(even) {
    margin-top: 0;
}

.project-image-wrapper::after {
    content: "";

    position: absolute;

    inset: 0;

    border: 1px solid rgba(255, 255, 255, 0.06);

    pointer-events: none;
}


/* ==========================================================
   PREMIUM PROCESS
========================================================== */

.premium-process {
    padding: 145px 0;

    background: #f2f0e9;

    color: #171717;
}

.premium-process-heading {
    margin-bottom: 85px;

    display: grid;

    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(300px, 0.55fr);

    gap: 11%;

    align-items: end;
}

.premium-process-kicker {
    margin-bottom: 25px;

    color: var(--mp-gold);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 3px;
}

.premium-process-heading h2 {
    max-width: 850px;

    color: #171717;

    font-size: clamp(55px, 6vw, 94px);
    font-weight: 400;

    line-height: 0.92;

    letter-spacing: -5px;
}

.premium-process-heading h2 span {
    display: block;

    color: var(--mp-gold);
}

.premium-process-heading > p {
    max-width: 420px;

    padding-bottom: 7px;

    color: #777771;

    font-size: 13px;

    line-height: 1.9;
}

.premium-process-list {
    border-top: 1px solid #cbc9c1;
}

.premium-process-row {
    min-height: 115px;

    padding: 27px 0;

    display: grid;

    grid-template-columns:
        75px
        minmax(280px, 0.8fr)
        minmax(300px, 1fr);

    gap: 40px;

    align-items: center;

    border-bottom: 1px solid #cbc9c1;

    transition:
        padding-left 0.3s ease,
        background 0.3s ease;
}

.premium-process-row:hover {
    padding-left: 15px;

    background: rgba(201, 148, 53, 0.035);
}

.premium-process-row > span {
    color: var(--mp-gold);

    font-size: 9px;
    font-weight: 800;
}

.premium-process-row h3 {
    color: #242424;

    font-size: 18px;
    font-weight: 500;
}

.premium-process-row p {
    max-width: 480px;

    color: #85857f;

    font-size: 12px;

    line-height: 1.75;
}


/* ==========================================================
   PREMIUM CTA
========================================================== */

.premium-cta {
    position: relative;

    padding: 170px 25px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 50%,
            #272b2f 0%,
            #171a1d 45%,
            #0d0f10 100%
        );

    color: #ffffff;

    text-align: center;
}

.premium-cta::before {
    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    left: 50%;
    top: 50%;

    border: 1px solid rgba(201, 148, 53, 0.10);

    border-radius: 50%;

    transform: translate(-50%, -50%);
}

.premium-cta::after {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    left: 50%;
    top: 50%;

    border: 1px solid rgba(255, 255, 255, 0.045);

    border-radius: 50%;

    transform: translate(-50%, -50%);
}

.premium-cta-inner {
    position: relative;

    max-width: 950px;

    margin: 0 auto;

    z-index: 2;
}

.premium-cta-label {
    display: block;

    margin-bottom: 30px;

    color: var(--mp-gold);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 3px;
}

.premium-cta h2 {
    margin-bottom: 28px;

    color: #ffffff;

    font-size: clamp(65px, 7vw, 110px);
    font-weight: 300;

    line-height: 0.88;

    letter-spacing: -6px;
}

.premium-cta h2 span {
    display: block;

    color: var(--mp-gold);
}

.premium-cta p {
    max-width: 560px;

    margin: 0 auto 38px;

    color: #929598;

    font-size: 13px;

    line-height: 1.85;
}

.premium-cta-button {
    min-width: 245px;
}


/* ==========================================================
   PREMIUM CONTACT
========================================================== */

.premium-contact {
    padding: 125px 0;

    background: #f2f0e9;

    color: #171717;
}

.premium-contact-label {
    margin-bottom: 38px;

    color: var(--mp-gold);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 3px;
}

.premium-contact-heading h2 {
    margin-bottom: 70px;

    color: #171717;

    font-size: clamp(65px, 7vw, 105px);
    font-weight: 400;

    line-height: 0.9;

    letter-spacing: -5px;
}

.premium-contact-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    border-top: 1px solid #cac8c0;
}

.premium-contact-item {
    position: relative;

    min-height: 135px;

    padding: 30px 30px 25px 0;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    border-bottom: 1px solid #cac8c0;

    transition:
        color 0.25s ease,
        padding-left 0.25s ease;
}

.premium-contact-item:not(:last-child) {
    margin-right: 30px;

    border-right: 1px solid #cac8c0;
}

a.premium-contact-item:hover {
    padding-left: 10px;

    color: var(--mp-gold);
}

.premium-contact-item small {
    color: var(--mp-gold);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 2px;
}

.premium-contact-item span {
    color: #282828;

    font-size: 15px;

    transition: color 0.25s ease;
}

a.premium-contact-item:hover span {
    color: var(--mp-gold);
}

.premium-contact-item strong {
    position: absolute;

    right: 25px;
    bottom: 24px;

    color: var(--mp-gold);

    font-size: 19px;
    font-weight: 400;

    transition: transform 0.25s ease;
}

a.premium-contact-item:hover strong {
    transform: translate(4px, -4px);
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1000px) {

    .premium-container {
        width: calc(100% - 50px);
    }


    /* HERO */

    .premium-hero-inner {
        width: calc(100% - 50px);

        grid-template-columns: 1fr;

        gap: 45px;

        padding:
            calc(var(--header-height) + 70px)
            0
            110px;
    }

    .premium-hero-project {
        max-width: 500px;

        margin-bottom: 0;
    }

    .premium-hero h1 {
        font-size: clamp(65px, 11vw, 105px);
    }


    /* COMPANY */

    .premium-company-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .premium-company-copy {
        max-width: 650px;
    }

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

    .premium-value {
        margin-right: 20px;
    }


    /* PROCESS */

    .premium-process-heading {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .premium-process-heading > p {
        max-width: 650px;
    }

    .premium-process-row {
        grid-template-columns:
            60px
            minmax(250px, 0.8fr)
            1fr;
    }


    /* CONTACT */

    .premium-contact-grid {
        grid-template-columns: 1fr;
    }

    .premium-contact-item {
        margin-right: 0 !important;

        border-right: none !important;
    }


    /* PROJECTS */

    .project-card:nth-child(even) {
        margin-top: 0;
    }

}


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

@media (max-width: 700px) {

    .premium-container {
        width: calc(100% - 36px);
    }


    /* HERO */

    .premium-hero {
        min-height: 100svh;
    }

    .premium-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(5, 7, 8, 0.94),
                rgba(5, 7, 8, 0.68)
            ),
            linear-gradient(
                0deg,
                rgba(5, 7, 8, 0.95),
                rgba(5, 7, 8, 0.05)
            );
    }

    .premium-hero-grid {
        display: none;
    }

    .premium-hero-inner {
        width: calc(100% - 36px);

        min-height: 100svh;

        padding:
            calc(var(--header-height) + 60px)
            0
            100px;

        align-content: center;
    }

    .premium-hero-kicker {
        font-size: 7px;

        letter-spacing: 2px;
    }

    .premium-hero h1 {
        margin-bottom: 28px;

        font-size: clamp(52px, 16vw, 76px);

        line-height: 0.88;

        letter-spacing: -4px;
    }

    .premium-hero-lead {
        font-size: 12px;

        line-height: 1.75;
    }

    .premium-hero-actions {
        flex-direction: column;

        align-items: stretch;
    }

    .premium-button {
        width: 100%;
    }

    .premium-hero-project {
        display: none;
    }

    .premium-hero-bottom-left {
        display: none;
    }

    .premium-hero-bottom {
        justify-content: flex-end;
    }

    .premium-scroll-link {
        display: none;
    }


    /* COMPANY */

    .premium-company {
        padding: 90px 0 80px;
    }

    .premium-section-number {
        margin-bottom: 40px;
    }

    .premium-company-title h2 {
        font-size: 49px;

        letter-spacing: -3px;
    }

    .premium-company-grid {
        gap: 40px;
    }

    .premium-company-copy .premium-company-lead {
        font-size: 15px;
    }

    .premium-values {
        margin-top: 70px;

        grid-template-columns: 1fr;
    }

    .premium-value {
        min-height: auto;

        margin-right: 0 !important;

        padding: 25px 0;

        border-right: none !important;
    }

    .premium-value-number {
        margin-bottom: 20px;
    }


    /* CAROUSEL */

    .home-project-carousel {
        padding-top: 90px;
    }

    .home-carousel {
        min-height: 520px;

        height: 65vh;
    }


    /* PROCESS */

    .premium-process {
        padding: 90px 0;
    }

    .premium-process-heading {
        margin-bottom: 55px;
    }

    .premium-process-heading h2 {
        font-size: 49px;

        letter-spacing: -3px;
    }

    .premium-process-row {
        padding: 25px 0;

        grid-template-columns:
            42px
            1fr;

        gap: 10px 15px;
    }

    .premium-process-row p {
        grid-column: 2;
    }


    /* CTA */

    .premium-cta {
        padding: 115px 18px;
    }

    .premium-cta h2 {
        font-size: 52px;

        letter-spacing: -3px;
    }


    /* CONTACT */

    .premium-contact {
        padding: 90px 0;
    }

    .premium-contact-heading h2 {
        margin-bottom: 45px;

        font-size: 55px;

        letter-spacing: -3px;
    }

}


/* ==========================================================
   COMPANY MAP / GPS
========================================================== */

.premium-map-block {
    margin-top: 70px;

    display: grid;

    grid-template-columns:
        minmax(280px, 0.45fr)
        minmax(0, 1.55fr);

    min-height: 430px;

    border-top: 1px solid #cac8c0;
    border-bottom: 1px solid #cac8c0;
}

.premium-map-info {
    padding: 45px 45px 45px 0;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border-right: 1px solid #cac8c0;
}

.premium-map-info small {
    margin-bottom: 20px;

    color: var(--mp-gold);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 2.5px;
}

.premium-map-info h3 {
    margin-bottom: 18px;

    color: #171717;

    font-size: 24px;
    font-weight: 500;

    line-height: 1.2;
}

.premium-map-info p {
    margin-bottom: 30px;

    color: #6f6f69;

    font-size: 14px;

    line-height: 1.8;
}

.premium-map-button {
    width: 230px;

    min-height: 52px;

    padding: 0 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border: 1px solid var(--mp-gold);

    background: var(--mp-gold);

    color: #ffffff;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.5px;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.premium-map-button:hover {
    background: transparent;

    color: var(--mp-gold);
}

.premium-map-frame {
    position: relative;

    min-height: 430px;

    overflow: hidden;

    background: #dddddd;
}

.premium-map-frame iframe {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    border: 0;

    filter: grayscale(0.15) contrast(1.05);
}


/* TABLET */

@media (max-width: 900px) {

    .premium-map-block {
        grid-template-columns: 1fr;
    }

    .premium-map-info {
        padding: 35px 0;

        border-right: none;
        border-bottom: 1px solid #cac8c0;
    }

    .premium-map-frame {
        min-height: 380px;
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .premium-map-block {
        margin-top: 50px;
    }

    .premium-map-frame {
        min-height: 330px;
    }

    .premium-map-button {
        width: 100%;
    }

}

/* FINAL PROJECT GRID FIX */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
    row-gap: 65px;
    align-items: start;
}

.project-card {
    margin-top: 0 !important;
}

.project-card:nth-child(even) {
    margin-top: 0 !important;
}

.project-image-wrapper {
    width: 100%;
    height: auto !important;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: transparent;
}

.project-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}