@import url('https://fonts.googleapis.com/css2?family=Forum&family=Manrope:wght@200..800&display=swap');

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
    /* Fonts */
    --font-forum: "Forum", serif;
    --font-manrope: "Manrope", sans-serif;

    /* Colors */
    --color-primary: #000000;
    --color-secondary: #F5F5F5;
    --color-white: #ffffff;
    --color-brown: #8E6043;

}

/* ========================================
   GLOBAL OVERRIDES
   ======================================== */
.container.main-content {
    padding: 0 !important;
    margin: auto !important;
    scroll-behavior: smooth;
}

/* ========================================
   HEADER
   ======================================== */
.lpl2d-header {
    width: 100%;
    padding: 40px 70px;
    position: absolute;
    top: 0;
}

.lpl2d-logo img {
    max-height: 80px;
    object-fit: contain;
}

.lpl2d-header__links-wrapper {
    position: fixed;
    display: flex;
    gap: 10px;
    top: 30vh;
    right: 0;
    width: fit-content;
    height: fit-content;
    padding-inline: 20px;
    flex-direction: column;
    align-items: flex-end;
    z-index: 40;
}

.lpl2d-header__link img {
    height: 25px;
    width: 25px;
    object-fit: contain;
}

.lpl2d-header__link {
    gap: 16px;
    background: var(--color-brown);
    z-index: 6;
    border-radius: 40px;
    height: 50px;
    width: fit-content;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    align-content: center;
    padding: 16px 20px;
    color: var(--color-white);
    font-family: var(--font-manrope);
    font-size: 12px;
    line-height: 100%;
    font-weight: 400;
    letter-spacing: 0;
    place-self: end;
    transition: all 0.3s ease-in-out;
}

.lpl2d-header__link:hover {
    color: var(--color-white);
    transform: scale(1.1);
}

.lpl2d-header__language-switcher {
    display: flex;
    position: absolute;
    top: 20px;
    right: 20px;
    width: clamp(30px, 6vw, 50px);
    height: clamp(30px, 6vw, 50px);
    z-index: 5;
    align-items: center;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 40px;
    transition: all 0.3s ease-in-out;
    justify-content: center;
    align-content: center;
}

.lpl2d-header__lang-link {
    font-family: var(--font-manrope);
    font-size: clamp(10px, 2vw, 12px);
    color: var(--color-secondary);
    text-decoration: none;
    padding: 5px 10px;
    border: 1px solid transparent;
    border-radius: 5px;
    font-weight: 400;
}

.lpl2d-header__language-switcher:hover {
    transform: scale(1.1);
}

.lpl2d-header__lang-link--active {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.lpl2d-header__lang-separator {
    color: var(--color-primary);
    font-size: 14px;
}


/* ========================================
   HERO SECTION
   ======================================== */
.lpl2d-hero {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 100px;
    overflow: visible;
}

.lpl2d-hero::after {
    content: '';
    background: url('https://spacitude.com/wp-content/uploads/2026/01/hero-asset.png') no-repeat bottom right;
    position: absolute;
    bottom: -10%;
    right: 10%;
    background-size: 100%;
    width: 400px;
    height: 300px;
    z-index: 2;
    transition: transform 1.2s ease-out;
}

.lpl2d-hero__content {
    padding: 200px 70px 70px;
    max-width: 60%;
    z-index: 2;
}

.lpl2d-hero__content:before {
    content: '';
    position: absolute;
    left: 0;
    width: 85px;
    height: 60%;
    background: linear-gradient(90deg, var(--color-white), transparent);
    z-index: 2;
}

.lpl2d-hero .lpl2d-hero__title {
    font-size: clamp(60px, 8vw, 120px);
    line-height: clamp(50px, 6.5vw, 100px);
    font-family: var(--font-forum);
    letter-spacing: -4px;
    margin-bottom: 30px;
    color: var(--color-primary);
    opacity: 1;
    transition: opacity 0.8s ease-in-out;
}

.lpl2d-hero .lpl2d-hero__title [data-aos=fade-right] {
    transform: translate3d(-500px, 0, 0) !important;
}

.lpl2d-hero .lpl2d-hero__title-desktop {
    display: inline !important;
}

.lpl2d-hero .lpl2d-hero__title-mobile {
    display: none !important;
}

.lpl2d-hero .lpl2d-hero__subtitle {
    font-size: clamp(20px, 2vw, 30px);
    line-height: 100%;
    text-transform: uppercase;
    font-family: var(--font-forum);
    letter-spacing: 0;
    color: var(--color-primary);
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

.lpl2d-hero .lpl2d-hero__description {
    font-size: clamp(18px, 1.8vw, 25px);
    line-height: 110%;
    padding-top: 70px;
    padding-bottom: 0;
    font-family: var(--font-manrope);
    color: var(--color-primary);
    max-width: 65%;
    font-weight: 400;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

.lpl2d-hero .lpl2d-hero__image {
    position: absolute;
    right: 0;
    left: auto;
    max-width: 58%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.lpl2d-hero .lpl2d-hero__image img {
    height: 90%;
    width: 100%;
    object-fit: cover;
    transition: all 1.2s ease-out;
}

/* Hero animations only for 1025px and above */
@media (min-width: 1025px) {
    .lpl2d-hero.quote-in-view::after {
        transform: rotate(90deg);
    }

    .lpl2d-hero.quote-in-view .lpl2d-hero__image img {
        height: 100%;
    }

}

/* ========================================
   QUOTE SECTION
   ======================================== */
.lpl2d-quote {
    position: relative;
    margin: 0 0 140px;
    z-index: 2;
}

.lpl2d-quote .lpl2d-quote__background {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: 1;
}

.lpl2d-quote .lpl2d-quote__background-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: var(--color-primary);
    opacity: 0.5;
    z-index: 2;
}

.lpl2d-quote .lpl2d-quote__content-wrapper {
    position: relative;
    z-index: 3;
    max-width: 1100px;
    margin: auto;
    display: flex;
    flex-direction: row;
    padding-top: 150px;
    padding-bottom: 100px;
}

.lpl2d-quote .lpl2d-quote__image {
    max-width: 45%;
    width: 100%;
    margin-left: 20px;
}

.lpl2d-quote .lpl2d-quote__image img {
    max-height: 650px;
    width: 100%;
    object-fit: cover;
}

.lpl2d-quote .lpl2d-quote__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    margin-left: -28px;
    max-width: 57%;
}

.lpl2d-quote .lpl2d-quote__text {
    font-family: var(--font-forum);
    color: var(--color-secondary);
    font-size: clamp(30px, 5vw, 70px);
    line-height: clamp(34px, 5.5vw, 76px);
    letter-spacing: -4px;
    padding-bottom: 0;
}

.lpl2d-quote .lpl2d-quote__manrope {
    font-family: var(--font-manrope);
    font-size: clamp(42px, 5.2vw, 75px);
}

.lpl2d-quote .lpl2d-quote__content img {
    max-height: clamp(30px, 6.6vw, 70px);
    width: 100%;
    object-fit: contain;
    object-position: left;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.lpl2d-manrope {
    font-family: var(--font-manrope);
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.lpl2d-features {
    margin-top: 140px;
    margin-bottom: 190px;
}

.lpl2d-features__top {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 200px;
    padding-left: 54px;
    padding-bottom: 80px;
}

.lpl2d-features__top .lpl2d-features__col.lpl2d-features__col--left {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.lpl2d-features__top .lpl2d-features__col.lpl2d-features__col--left img {
    max-width: 68%;
    width: 100%;
    max-height: 340px;
    height: 100%;
    object-fit: cover;
}

.lpl2d-features__top .lpl2d-features__description {
    font-family: var(--font-manrope);
    color: var(--color-primary);
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: clamp(30px, 3vw, 43px);
    padding-left: 50px;
    font-weight: 400;
}

.lpl2d-features__top .lpl2d-features__col.lpl2d-features__col--right {
    position: relative;
    display: flex;
    flex-direction: column;
    align-content: flex-end;
    align-items: flex-end;
    justify-content: flex-end;
    padding-bottom: 40px;
}

.lpl2d-features__top .lpl2d-features__col.lpl2d-features__col--right img {
    max-width: 100%;
    width: 100%;
    max-height: 390px;
    height: 100%;
    object-fit: cover;
}

.lpl2d-features__col--right:before {
    content: '';
    background: url(https://spacitude.com/wp-content/uploads/2026/01/features-asset.png) no-repeat top left;
    position: absolute;
    top: -45%;
    left: -45%;
    width: 520px;
    height: 390px;
    z-index: -1;
    background-size: 100%;
    transform: rotate(-90deg);
    transition: top 1.2s ease-out, transform 1.2s ease-out;
}

.lpl2d-features__col--right.features-in-view:before {
    top: -5%;
    transform: rotate(0deg);
}

.lpl2d-features__bottom {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    padding-top: 40px;
    gap: 140px;
    align-items: center;
    justify-items: center;
}

.lpl2d-features__bottom .lpl2d-features__description {
    font-family: var(--font-manrope);
    color: var(--color-primary);
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: clamp(30px, 3vw, 43px);
    font-weight: 400;
    max-width: 80%;
    justify-self: left;
}

.lpl2d-features__bottom .lpl2d-features__bottom-image {
    max-height: 580px;
    width: 100%;
    object-fit: cover;
    height: 100%;
}

/* ========================================
   PROJECTS SECTION
   ======================================== */
.lpl2d-projects {
    position: relative;
    padding-inline: 100px;
    padding-block: 40px;
}

.lpl2d-projects:before {
    content: '';
    width: calc(100% - 200px);
    height: 1px;
    position: absolute;
    left: 100px;
    top: 0;
    background: var(--color-primary);
}

.lpl2d-projects__title {
    font-size: clamp(20px, 2vw, 30px);
    line-height: 100%;
    text-transform: uppercase;
    font-family: var(--font-forum);
    letter-spacing: 0;
    color: var(--color-primary);
}

.lpl2d-projects .swiper {
    margin-top: 80px;
    overflow: visible !important;
}

.lpl2d-projects .swiper-slide {
    width: 74%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 30px;
}

.lpl2d-projects__slide-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 800px;
    justify-content: space-between;
    max-width: 36%;
    width: 100%;
    z-index: 2;
}

.lpl2d-projects__slide-content-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lpl2d-projects__slide-content-footer {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lpl2d-projects__slide-subtitle {
    position: relative;
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 100%;
    text-transform: uppercase;
    font-family: var(--font-forum);
    letter-spacing: 0;
    color: var(--color-primary);
    width: fit-content;
}

.lpl2d-projects__slide-title {
    font-size: clamp(45px, 7.5vw, 110px);
    line-height: clamp(46px, 6.2vw, 91px);
    font-family: var(--font-forum);
    letter-spacing: -4px;
    color: var(--color-primary);
    font-weight: 400;
    width: fit-content;
    position: relative;
}

.lpl2d-projects__slide-title span {
    position: relative;
    display: block;
    width: fit-content;
}

.lpl2d-projects__slide-title span:before {
    content: '';
    background: var(--color-white);
    width: 105%;
    height: 120%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.lpl2d-projects__slide-description {
    font-family: var(--font-manrope);
    color: var(--color-primary);
    font-size: clamp(16px, 1.1vw, 15px);
    line-height: 22px;
    font-weight: 400;
    max-width: 100%;
    justify-self: left;
    padding-bottom: 0;
}

.lpl2d-projects__slide-link {
    font-size: clamp(14px, 1.2vw, 16px);
    line-height: 100%;
    font-family: var(--font-manrope);
    letter-spacing: 0;
    color: var(--color-primary);
    font-weight: 400;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
}

.lpl2d-projects__slide-link:hover {
    text-decoration: underline;
}

.lpl2d-projects__slide-link:hover .lpl2d-projects__arrow-icon {
    text-decoration: none;
}

.lpl2d-projects__slide-image {
    width: 64%;
    z-index: 1;
}

.lpl2d-projects__slide-image img {
    height: 100%;
    object-fit: cover;
}

.lpl2d-projects__arrow-icon {
    font-size: clamp(14px, 1.2vw, 16px);
    line-height: 100%;
    color: var(--color-primary);
}

.lpl2d-projects .swiper-wrapper {
    padding-bottom: 100px;
}

.lpl2d-projects .swiper-pagination {
    text-align: left;
    bottom: 0;
    font-family: var(--font-manrope);
    font-weight: 400;
    color: var(--color-primary);
    line-height: 100%;
}

.lpl2d-projects .swiper-scrollbar.swiper-scrollbar-horizontal,
.lpl2d-projects .swiper-horizontal>.swiper-scrollbar {
    bottom: 40px !important;
    left: 0;
    width: 100% !important;
}

.lpl2d-projects .swiper-scrollbar {
    background: var(--color-primary) !important;
    height: 1px !important;
}

.lpl2d-projects .swiper-scrollbar-drag {
    height: 4px !important;
    background: var(--color-primary) !important;
    top: -1px !important;
}

/* ========================================
   SPACES SECTION
   ======================================== */
.lpl2d-spaces {
    margin-top: 40px;
    margin-bottom: 190px;
    position: relative;
}

.lpl2d-spaces__image-tl,
.lpl2d-spaces__image-tr,
.lpl2d-spaces__image-bl,
.lpl2d-spaces__image-br {
    position: absolute;
}

.lpl2d-spaces__image-tl {
    top: 0;
    left: 90px;
    max-height: 380px !important;
    height: 100%;
    width: 100%;
    max-width: 21% !important;
    object-fit: cover;
}

.lpl2d-spaces__image-tr {
    top: 100px;
    right: 100px;
    max-height: 310px !important;
    height: 100%;
    width: 100%;
    max-width: 15% !important;
    object-fit: cover;
}

.lpl2d-spaces__image-bl {
    bottom: 0;
    left: 0;
    max-height: 390px;
    height: 100%;
    width: 100%;
    max-width: 29% !important;
    object-fit: cover;
}

.lpl2d-spaces__image-br {
    bottom: 0;
    right: 0;
    max-height: 410px !important;
    height: 100% !important;
    width: 100%;
    max-width: 26% !important;
    object-fit: cover;
}

.lpl2d-spaces__content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    text-align: center;
    max-width: 46%;
    margin: auto;
    min-height: 1000px;
    z-index: 2;
    padding-bottom: 120px;
}

.lpl2d-spaces__subtitle {
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 100%;
    text-transform: uppercase;
    font-family: var(--font-forum);
    letter-spacing: 0;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.lpl2d-spaces__title {
    font-size: clamp(50px, 6.5vw, 90px);
    line-height: clamp(40px, 6.6vw, 61px);
    font-family: var(--font-forum);
    letter-spacing: -3px;
    margin-bottom: 40px;
    color: var(--color-primary);
    max-width: 90%;
}

.lpl2d-spaces__title .lpl2d-manrope {
    font-size: clamp(35px, 6.6vw, 70px);
    line-height: clamp(22px, 6.6vw, 60px);
}

.lpl2d-spaces__description {
    font-family: var(--font-manrope);
    color: var(--color-primary);
    font-size: clamp(18px, 1.5vw, 20px);
    line-height: clamp(24px, 2.8vw, 40px);
    font-weight: 400;
    padding-bottom: 20px;
}

.lpl2d-spaces__author {
    font-family: var(--font-manrope);
    color: var(--color-primary);
    font-size: clamp(13px, 1.1vw, 15px);
    line-height: clamp(18px, 1.4vw, 20px);
    font-weight: 400;
}

/* ========================================
   CONTACT FORM SECTION
   ======================================== */
.lpl2d-contact-form {
    width: 100%;
    padding-inline: 100px;
    margin-bottom: 90px;
    overflow: hidden;
}

.lpl2d-contact-form__image-wrapper {
    position: relative;
    width: 100%;
    height: 680px;
    place-content: flex-start;
    overflow: hidden;
}

.lpl2d-contact-form__image-wrapper img {
    height: 0%;
    width: 100%;
    object-fit: cover;
    transition: height 1.2s ease-in-out;
}

.contact-form-in-view .lpl2d-contact-form__image-wrapper img {
    height: 100%;
}

.lpl2d-contact-form__wrapper-columns {
    display: flex;
    flex-direction: row;
    align-content: flex-start;
    align-items: flex-start;
}

.lpl2d-contact-form__col.lpl2d-contact-form__col--left {
    max-width: 45%;
    margin-top: -100px;
    width: 100%;
}

.lpl2d-contact-form__col.lpl2d-contact-form__col--right {
    max-width: 55%;
    margin-top: 40px;
    width: 100%;
}

.lpl2d-contact-form__subtitle {
    position: relative;
    font-size: clamp(16px, 2vw, 30px);
    line-height: 100%;
    text-transform: uppercase;
    font-family: var(--font-forum);
    letter-spacing: 0;
    color: var(--color-primary);
    z-index: 2;
}

.lpl2d-contact-form__subtitle:before {
    content: '';
    position: absolute;
    top: -50%;
    left: 0;
    width: 50%;
    height: 200%;
    background: var(--color-white);
    z-index: -1;
    transition: width 1.2s ease-out;
}

.lpl2d-contact-form__subtitle.contact-form-in-view:before {
    width: 110%;
}

.lpl2d-contact-form__title {
    position: relative;
    font-family: var(--font-manrope);
    font-size: clamp(45px, 7vw, 100px);
    line-height: clamp(50px, 7.5vw, 110px);
    font-weight: 300;
    color: var(--color-primary);
    z-index: 2;
}

.lpl2d-contact-form__title:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: var(--color-white);
    z-index: -1;
    transition: width 1.2s ease-out;
}

.lpl2d-contact-form__title.contact-form-in-view:before {
    width: 105%;
}

/* WPForms Styles */
.wpforms-field {
    display: grid !important;
    grid-template-columns: 1.7fr 3fr;
    column-gap: 20px !important;
    row-gap: 10px !important;
    align-items: center;
    justify-items: end;
    z-index: 3;
}

.wpforms-field input:not([type="checkbox"]),
.wpforms-field textarea {
    border: 1px solid var(--color-primary) !important;
    min-height: 52px !important;
    border-radius: 5px !important;
}

.wpforms-required-label {
    display: none !important;
}

.wpforms-field-label {
    white-space: nowrap;
    font-family: var(--font-manrope);
    font-size: clamp(16px, 1.5vw, 20px) !important;
    font-weight: 400 !important;
    letter-spacing: -2px;
    margin-bottom: 0 !important;
}

.wpforms-field-textarea {
    align-items: start !important;
}

.wpforms-field-textarea label {
    align-self: self-start !important;
    padding-top: 10px !important;
}

.wpforms-field-textarea .wpforms-field-description {
    margin-top: -90px !important;
    font-size: clamp(13px, 1.1vw, 15px) !important;
    color: var(--color-primary) !important;
    font-family: var(--font-manrope) !important;
    font-weight: 400;
    letter-spacing: -1px;
}

.contact-consent {
    grid-template-columns: 1fr !important;
    max-width: 62% !important;
    margin-left: auto !important;
    justify-items: left !important;
    margin-top: -30px !important;
}

.contact-consent label {
    font-size: clamp(13px, 1.1vw, 15px) !important;
    font-family: var(--font-manrope) !important;
    font-weight: 400 !important;
}

.wpforms-container label.wpforms-error,
.wpforms-container em.wpforms-error {
    grid-column: span 2;
    width: 62%;
    margin-left: auto !important;
    margin-top: 0 !important;
    font-family: var(--font-manrope);
}

.contact-consent label.wpforms-error,
.contact-consent em.wpforms-error {
    width: 100% !important;
}

.wpforms-container-full input[type=checkbox]:after,
.wpforms-container-full input[type=checkbox]:before {
    border: 1px solid !important;
    border-radius: 5px !important;
}

.wpforms-submit-container {
    width: 62% !important;
    margin-left: auto !important;
}

.wpforms-submit-container button {
    width: 100% !important;
    min-height: 52px !important;
    font-size: clamp(16px, 1.5vw, 20px) !important;
    line-height: clamp(16px, 1.5vw, 20px) !important;
    font-family: var(--font-manrope) !important;
    font-weight: 400 !important;
    color: var(--color-primary) !important;
    border: 1px solid var(--color-primary) !important;
    background: transparent !important;
    transition: all 0.5s ease-in-out;
}

.wpforms-submit-container button:hover {
    background: var(--color-primary) !important;
    color: var(--color-white) !important;
    box-shadow: none !important;
    -webkit-transform: none !important;
    transform: none !important;
}

/* ========================================
   OFFICES SECTION
   ======================================== */
.lpl2d-offices {
    position: relative;
    width: 100%;
    padding: 100px;
    padding-bottom: 20px;
    display: flex;
    gap: 90px;
}

.lpl2d-offices:before {
    content: '';
    position: absolute;
    top: 0;
    left: 100px;
    width: calc(100% - 200px);
    height: 1px;
    background: var(--color-primary);
}

.lpl2d-offices__col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.lpl2d-offices__location {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.lpl2d-offices__title {
    font-family: var(--font-manrope);
    font-size: clamp(25px, 2vw, 30px);
    line-height: clamp(25px, 2vw, 30px);
    font-weight: 500;
    letter-spacing: -2px;
    margin: 0;
}

.lpl2d-offices__subtitle {
    font-size: clamp(18px, 1.5vw, 20px);
    line-height: clamp(18px, 1.5vw, 20px);
    letter-spacing: -1px;
    color: var(--color-primary);
}

.lpl2d-offices__contacts {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: clamp(18px, 1.5vw, 20px);
    font-weight: 300;
    letter-spacing: -1px;
}

.lpl2d-offices__contact {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
}

.lpl2d-offices__contact a {
    color: var(--color-primary);
    transition: all 0.5s ease-in-out;
}

.lpl2d-offices__contact a:hover {
    text-decoration: underline;
}

.lpl2d-offices__contact img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.lpl2d-offices__image {
    max-height: 450px;
    width: 100%;
    place-content: end;
    overflow: hidden;
}

.lpl2d-offices__image img {
    height: 10%;
    object-fit: cover;
    width: 100%;
    transition: height 1.2s ease-out;
}

.lpl2d-offices__image.offices-in-view img {
    height: 100%;
}

/* ========================================
   FOOTER
   ======================================== */
.lpl2d-footer {
    width: 100%;
    padding: 60px 100px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lpl2d-footer__socials {
    display: flex;
    flex-direction: row;
    align-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.lpl2d-footer__socials a {
    width: 30px;
    height: 30px;
    transition: all 0.5s ease-in-out;
}

.lpl2d-footer__socials a:hover {
    transform: scale(1.1);
}

.lpl2d-footer__socials img {
    width: 31px;
    height: 31px;
    object-fit: contain;
}

.lpl2d-footer__copyright {
    display: flex;
    flex-direction: row;
    gap: 30px;
    font-size: clamp(11px, 0.9vw, 12px);
    color: var(--color-primary);
    line-height: clamp(18px, 1.4vw, 20px);
    font-weight: 500;
    font-family: var(--font-manrope);
    letter-spacing: -0.5px;
}

.lpl2d-footer__copyright a,
.lpl2d-footer__credits {
    font-size: clamp(11px, 0.9vw, 12px);
    color: var(--color-primary);
    line-height: clamp(18px, 1.4vw, 20px);
    font-weight: 500;
    font-family: var(--font-manrope);
    letter-spacing: -0.5px;
}

.lpl2d-footer__copyright a:hover,
.lpl2d-footer__credits a:hover {
    text-decoration: underline;
}

.lpl2d-footer__credits a {
    font-weight: 900;
    font-size: clamp(12px, 1vw, 14px);
    padding-left: 3px;
}

.contact-lpl2d {
   position: relative;
   z-index: 5;
}


/* ========================================
   MEDIA QUERIES
   ======================================== */

/* 1200px and below */
@media (max-width: 1200px) {
    .lpl2d-quote .lpl2d-quote__content-wrapper {
        max-width: 1000px;
    }

    .lpl2d-contact-form {
        padding-inline: 80px;
    }

    .lpl2d-projects {
        padding-inline: 80px;
    }

    .lpl2d-offices {
        padding-inline: 80px;
    }

    .lpl2d-footer {
        padding: 60px 80px;
    }

    .lpl2d-spaces {
        margin-top: 60px;
        margin-bottom: 60px;
        position: relative;
        display: grid !important;
        grid-template-columns: 1fr 1fr;
    }

    .lpl2d-spaces__content {
        max-width: 100%;
        min-height: auto;
        grid-column: span 2;
        padding: 80px 20px;
    }

    .lpl2d-spaces__image-tl {
        position: relative;
        top: 0;
        left: 0;
        max-height: 200px !important;
        height: 100% !important;
        max-width: 80% !important;
    }

    .lpl2d-spaces__image-tr {
        position: relative;
        top: 20px;
        right: 0;
        max-height: 310px !important;
        max-width: 58% !important;
        justify-self: right;
    }

    .lpl2d-spaces__title {
        margin-bottom: 20px;
        letter-spacing: -2px;
        max-width: 100%;
    }

    .lpl2d-spaces__image-bl {
        position: relative;
        bottom: 0;
        left: 0;
        max-height: 140px;
        max-width: 88% !important;
    }

    .lpl2d-spaces__image-br {
        position: relative;
        bottom: 0;
        right: 0;
        max-height: 140px !important;
        max-width: 140px !important;
        aspect-ratio: 1;
        justify-self: right;
    }

    .lpl2d-spaces__subtitle {
        margin-bottom: 10px;
    }
}

/* 1024px and below */
@media (max-width: 1024px) {
    .template-landing-page .cky-btn-revisit-wrapper {
        bottom: 87px;
        left: 10px;
    }
    
    .template-landing-page #to-top {
        display: none !important;
    }
    
    .lpl2d-header__links-wrapper {
        top: auto;
        bottom: 0;
        background: var(--color-brown);
        width: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: var(20px, 40px);
    }

    .lpl2d-header__link {
        gap: 8px;
        height: fit-content;
        flex-direction: column-reverse;
    }

    .container.main-content {
        margin: 0 !important;
        max-width: 100%;
    }

    .lpl2d-header {
        padding: 30px 30px;
        position: relative;
        text-align: center;
    }

    .lpl2d-logo img {
        max-height: 60px;
    }

    .lpl2d-hero {
        flex-direction: column;
        width: 100%;
        display: flex;
        padding-bottom: 0;
    }

    .lpl2d-hero__content {
        padding: 20px;
        max-width: 100%;
        display: contents;
    }

    .lpl2d-hero__content:before {
        display: none;
    }

    .lpl2d-hero .lpl2d-hero__title {
        order: 1;
        padding: 0 20px;
        margin-bottom: 0;
    }

    .lpl2d-hero .lpl2d-hero__subtitle {
        order: 2;
        padding: 10px 20px;
    }

    .lpl2d-hero .lpl2d-hero__image {
        position: relative;
        right: auto;
        max-width: 100%;
        width: 100%;
        height: auto;
        order: 3;
        margin-top: -65px;
        z-index: -1;
    }

    .lpl2d-hero .lpl2d-hero__description {
        padding: 20px;
        padding-top: 50px;
        max-width: 100%;
        order: 4;
    }

    .lpl2d-hero::after {
        bottom: 17%;
        right: 20px;
        background-size: contain;
        width: 160px;
        height: 120px;
    }

    .lpl2d-hero .lpl2d-hero__title-desktop {
        display: none !important;
    }

    .lpl2d-hero .lpl2d-hero__title-mobile {
        display: inline !important;
    }

    .lpl2d-quote {
        margin-block: 40px;
    }

    .lpl2d-quote .lpl2d-quote__content-wrapper {
        z-index: 3;
        padding-top: 60px;
        padding-bottom: 120px;
        padding-inline: 20px;
        flex-direction: column-reverse;
        margin-bottom: 200px;
    }

    .lpl2d-quote .lpl2d-quote__content {
        gap: 8px;
        margin-left: 0;
        max-width: 100%;
    }

    .lpl2d-quote .lpl2d-quote__image img {
        max-height: 300px;
        max-width: 210px;
        margin-bottom: -180px;
        float: right;
    }

    .lpl2d-quote .lpl2d-quote__text {
        letter-spacing: -2px;
    }

    .lpl2d-quote .lpl2d-quote__image {
        max-width: 100%;
        width: 100%;
        margin-left: 0;
        margin-top: 20px;
        margin-bottom: -100px;
    }

    .lpl2d-features {
        display: flex;
        flex-direction: column;
        margin-bottom: 40px;
    }

    .lpl2d-features__top {
        display: contents;
    }

    .lpl2d-features__top .lpl2d-features__col.lpl2d-features__col--left {
        order: 1;
        flex-direction: column-reverse;
        gap: 40px;
        padding-left: 0;
        padding-bottom: 40px;
    }

    .lpl2d-features__top .lpl2d-features__col.lpl2d-features__col--left img {
        max-width: 100%;
        max-height: 300px;
    }

    .lpl2d-features__top .lpl2d-features__description {
        padding-inline: 20px;
        padding-bottom: 0;
    }

    .lpl2d-features__bottom {
        order: 2;
        display: flex;
        padding-top: 0;
        gap: 40px;
        flex-direction: column-reverse;
    }

    .lpl2d-features__bottom .lpl2d-features__description {
        max-width: 100%;
        padding-inline: 20px;
        padding-bottom: 0;
    }

    .lpl2d-features__bottom .lpl2d-features__bottom-image {
        max-height: 310px;
    }

    .lpl2d-features__top .lpl2d-features__col.lpl2d-features__col--right {
        order: 3;
        padding-top: 60px;
    }

    .lpl2d-features__top .lpl2d-features__col.lpl2d-features__col--right img {
        max-height: 230px;
        z-index: 1;
    }

    .lpl2d-features__col--right:before {
        top: -10%;
        left: 20px;
        width: 180px;
        height: 140px;
        z-index: 0;
    }

    .lpl2d-projects:before {
        width: calc(100% - 40px);
        left: 20px;
    }

    .lpl2d-projects {
        padding: 0;
        padding-left: 20px;
    }

    .lpl2d-projects__title {
        display: none;
    }

    .lpl2d-projects__slide-title {
        letter-spacing: -3px;
    }

    .lpl2d-projects .swiper {
        display: flex;
        flex-direction: column;
        margin-top: 0;
    }

    .lpl2d-projects .swiper-pagination {
        order: 1;
        position: relative !important;
        bottom: auto !important;
        margin-bottom: 20px;
        padding-top: 10px;
        font-size: 12px;
    }

    .lpl2d-projects .swiper-wrapper {
        order: 2;
        padding-bottom: 20px;
    }

    .lpl2d-projects .swiper-slide {
        width: 85% !important;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .swiper .swiper-slide:last-child {
        margin-right: 0 !important;
    }

    .lpl2d-projects__slide-content {
        display: contents;
    }

    .lpl2d-projects__slide-content-header {
        order: 1;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .lpl2d-projects__slide-subtitle {
        order: 1;
    }

    .lpl2d-projects__slide-title {
        order: 2;
        max-width: 90%;
        z-index: 2;
    }

    .lpl2d-projects__slide-image {
        order: 2;
        width: 100%;
        margin-top: -90px;
        z-index: -1;
    }

    .lpl2d-projects__slide-image img {
        height: 100%;
        object-fit: cover;
        min-height: 400px;
    }

    .lpl2d-projects__slide-content-footer {
        order: 3;
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .lpl2d-projects__slide-description {
        order: 1;
    }

    .lpl2d-projects__slide-link {
        order: 2;
    }

    .lpl2d-projects .swiper-scrollbar,
    .lpl2d-projects .swiper-scrollbar.swiper-scrollbar-horizontal,
    .lpl2d-projects .swiper-horizontal>.swiper-scrollbar {
        order: 3;
        position: relative !important;
        bottom: auto !important;
        left: 0 !important;
        width: 100% !important;
        margin-top: 20px;
    }

    .lpl2d-contact-form {
        width: 100%;
        padding-inline: 0;
        margin-bottom: 30px;
    }

    .lpl2d-contact-form__image-wrapper {
        height: 100% !important;
        aspect-ratio: 1;
    }

    .lpl2d-contact-form img {
        min-height: 260px;
        object-fit: cover;
    }

    .lpl2d-contact-form__wrapper-columns {
        flex-direction: column;
    }

    .lpl2d-contact-form__col.lpl2d-contact-form__col--left {
        max-width: 100%;
        margin-top: -60px;
        width: 100%;
    }

    .lpl2d-contact-form__subtitle,
    .lpl2d-contact-form__title {
        padding-left: 20px;
    }

    .lpl2d-contact-form__title:before {
        width: 90%;
    }

    .lpl2d-contact-form__col.lpl2d-contact-form__col--right {
        max-width: 100%;
        padding-inline: 20px;
        margin-top: 0;
        width: 100%;
    }

    .lpl2d-contact-form__col--right .wpforms-container {
        margin-top: 10px !important;
        margin-bottom: 0 !important;
    }

    .lpl2d-contact-form__col--right .wpforms-container .wpforms-field {
        display: flex !important;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px !important;
        overflow: visible !important;
        position: relative !important;
        z-index: 5 !important;
    }

    .lpl2d-contact-form__col--right .contact-consent {
        grid-template-columns: 1fr !important;
        max-width: 100% !important;
        margin-left: auto !important;
        justify-items: left !important;
        margin-top: 0 !important;
    }

    .wpforms-container label.wpforms-error,
    .wpforms-container em.wpforms-error {
        width: 100% !important;
    }

    .lpl2d-contact-form__col--right .wpforms-field-textarea {
        min-height: 180px !important;
    }

    .lpl2d-contact-form__col--right .wpforms-field-textarea .wpforms-field-description {
        display: none;
    }

    .wpforms-container .wpforms-field,
    .wp-core-ui div.wpforms-container .wpforms-field {
        padding: 10px 0 !important;
    }

    .wpforms-field-textarea label {
        padding-top: 0 !important;
    }

    .wpforms-submit-container {
        width: 100% !important;
    }

    .lpl2d-offices:before {
        display: none;
    }

    .lpl2d-offices {
        padding: 20px;
        gap: 40px;
        flex-direction: column;
        font-family: var(--font-manrope);
    }

    .lpl2d-offices__col {
        gap: 18px;
    }

    .lpl2d-offices__contact img {
        width: 20px;
        height: 20px;
    }

    .lpl2d-offices__image img {
        max-height: 220px;
    }

    .lpl2d-footer {
        padding: 20px;
        gap: 8px;
    }
}

/* 768px to 1024px */
@media (max-width: 1024px) and (min-width: 768px) {
    .lpl2d-hero {
        margin-top: 40px;
    }

    .lpl2d-hero .lpl2d-hero__title {
        padding: 0 60px !important;
        max-width: 80% !important;
    }

    .lpl2d-hero .lpl2d-hero__subtitle {
        padding: 10px 60px !important;
    }

    .lpl2d-hero .lpl2d-hero__image,
    .lpl2d-hero .lpl2d-hero__image img {
        max-height: 500px !important;
    }

    .lpl2d-hero .lpl2d-hero__description {
        padding: 60px !important;
        max-width: 80% !important;
    }

    .lpl2d-hero::after {
        bottom: 18% !important;
        right: 60px !important;
        width: 260px !important;
        height: 200px !important;
    }

    .lpl2d-quote .lpl2d-quote__content-wrapper {
        padding-inline: 60px !important;
    }

    .lpl2d-quote .lpl2d-quote__image img {
        max-height: 400px !important;
        max-width: 310px !important;
    }

    .lpl2d-features__top .lpl2d-features__description {
        padding-inline: 60px !important;
    }

    .lpl2d-features__top .lpl2d-features__col.lpl2d-features__col--left img {
        max-height: 400px !important;
    }

    .lpl2d-features__bottom .lpl2d-features__description {
        padding-inline: 60px !important;
    }

    .lpl2d-features__bottom .lpl2d-features__bottom-image {
        max-height: 500px !important;
    }

    .lpl2d-features__top .lpl2d-features__col.lpl2d-features__col--right img {
        max-height: 350px !important;
    }

    .lpl2d-features__col--right:before {
        top: -16% !important;
        left: 60px !important;
        width: 280px !important;
        height: 240px !important;
    }

    .lpl2d-projects .swiper-slide {
        width: 60% !important;
    }
}