﻿/* =========================================================
   CORE TEAM
   ========================================================= */

.core-team {
    width: 100%;
    padding: 60px 0 60px;
    background: #fff;
}

.core-team-inner {
    width: min(1050px, 90%);
    margin: 0 auto;
}


/* =========================================================
   TEAM PROFILE
   ========================================================= */

.team-profile {
    display: grid;
    grid-template-columns: 240px 1fr;
    column-gap: 95px;
    align-items: start;
    width: 100%;
    /*padding: 80px 0;*/
    /*border-top: 1px solid rgba(0, 0, 0, 0.10);*/
}

    .team-profile:first-child {
        border-top: none;
        padding-top: 20px;
    }


/* =========================================================
   PROFILE PHOTO
   ========================================================= */

.team-profile-photo {
    width: 220px;
    margin: 0 auto;
}

    .team-profile-photo img {
        display: block;
        width: 260px;
        height: 300px;
        object-fit: cover;
        border-radius: 6px;
        filter: saturate(0.92);
        box-shadow: 0 16px 45px rgba(0, 0, 0, 0.12);
    }


/* =========================================================
   PROFILE CONTENT
   ========================================================= */

.team-profile-content {
    width: 100%;
    max-width: 700px;
    text-align: left;
}


/* =========================================================
   POSITION
   ========================================================= */

.team-profile-position {
    display: block;
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #777;
}


/* =========================================================
   NAME
   ========================================================= */

.team-profile-content h2 {
    margin: 0 0 20px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 400;
    line-height: 1.15;
    color: #252525;
}


/* =========================================================
   PROFILE INTRODUCTION
   ========================================================= */

.team-profile-intro {
    max-width: 650px;
    margin: 0 0 35px;
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}


/* =========================================================
   PERSONAL THOUGHTS
   ========================================================= */

.team-profile-thoughts {
   /* display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 35px;*/
    width: 100%;
    margin: 0 0 40px;
    text-align: left;
}

    .team-profile-thoughts > div {
        padding-top: 17px;
        border-top: 2px solid rgba(160, 79, 96, 0.35);
    }

    .team-profile-thoughts span {
        display: block;
        margin-bottom: 9px;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 2px;
        color: #a04f60;
    }

    .team-profile-thoughts p {
        margin: 0;
        font-size: 14px;
        line-height: 1.75;
        color: #555;
    }


/* =========================================================
   DESIGN QUOTE
   ========================================================= */

.team-profile-content blockquote {
    position: relative;
    max-width: 650px;
    margin: 0;
    padding: 22px 0 5px 25px;
    border-left: 2px solid #a04f60;
}

    .team-profile-content blockquote::before {
        content: "“";
        position: absolute;
        left: 8px;
        top: 3px;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 32px;
        line-height: 1;
        color: #a04f60;
    }

    .team-profile-content blockquote p {
        margin: 0 0 10px;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 18px;
        font-style: italic;
        line-height: 1.6;
        color: #3f3f3f;
    }

    .team-profile-content blockquote cite {
        font-size: 12px;
        font-style: normal;
        font-weight: 600;
        letter-spacing: 1px;
        color: #777;
    }


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .core-team {
        padding: 80px 0 100px;
    }

    .core-team-inner {
        width: 90%;
    }

    .team-profile {
        grid-template-columns: 200px 1fr;
        column-gap: 45px;
        padding: 65px 0;
    }

    .team-profile-photo {
        width: 190px;
    }

        .team-profile-photo img {
            width: 260px;
            height: 300px;
        }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .core-team {
        padding: 65px 0 80px;
    }

    .core-team-inner {
        width: 88%;
    }

    .team-profile {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding: 60px 0;
    }

        .team-profile:first-child {
            padding-top: 10px;
        }


    /* -----------------------------------------
       CENTERED PORTRAIT
       ----------------------------------------- */

    .team-profile-photo {
        width: 220px;
        margin: 0 auto 32px;
    }

        .team-profile-photo img {
            width: 220px;
            height: 300px;
        }


    /* -----------------------------------------
       CONTENT — LEFT ALIGNED
       ----------------------------------------- */

    .team-profile-content {
        width: 100%;
        text-align: left;
    }

    .team-profile-position {
        font-size: 10px;
        letter-spacing: 2.5px;
    }

    .team-profile-content h2 {
        font-size: 34px;
        margin-bottom: 18px;
    }

    .team-profile-intro {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 32px;
    }


    /* -----------------------------------------
       PERSONAL THOUGHTS
       ----------------------------------------- */

    .team-profile-thoughts {
        grid-template-columns: 1fr;
        gap: 75px;
        margin-bottom: 35px;
    }

        .team-profile-thoughts > div {
            padding-top: 15px;
        }


    /* -----------------------------------------
       QUOTE
       ----------------------------------------- */

    .team-profile-content blockquote {
        padding-left: 24px;
    }

        .team-profile-content blockquote p {
            font-size: 17px;
            line-height: 1.6;
        }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .core-team-inner {
        width: 90%;
    }

    .team-profile {
        padding: 50px 0;
    }


    /* -----------------------------------------
       SMALLER PORTRAIT
       ----------------------------------------- */

    .team-profile-photo {
        width: 200px;
    }

        .team-profile-photo img {
            width: 200px;
            height: 275px;
        }


    /* -----------------------------------------
       CONTENT
       ----------------------------------------- */

    .team-profile-content h2 {
        font-size: 30px;
    }

    .team-profile-intro {
        font-size: 15px;
    }


    /* -----------------------------------------
       THOUGHTS
       ----------------------------------------- */

    .team-profile-thoughts p {
        font-size: 13px;
    }


    /* -----------------------------------------
       QUOTE
       ----------------------------------------- */

    .team-profile-content blockquote p {
        font-size: 16px;
    }
}



/* =========================================================
   INTERIORS 360
   TEAM ROLE SLIDER
   ========================================================= */

.team-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}


    /* =========================================================
   SLIDE
   ========================================================= */

    .team-slider .team-profile {
        display: none;
        position: relative;
        width: 100%;
        opacity: 0;
        transform: translateX(30px);
    }


        .team-slider .team-profile.is-active {
            display: grid;
            opacity: 1;
            transform: translateX(0);
            animation: teamSlideIn 0.5s ease forwards;
        }


@keyframes teamSlideIn {

    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* =========================================================
   NAVIGATION ARROWS
   ========================================================= */

.team-slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 10;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(168, 90, 106, 0.25);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #a85a6a;
    font-size: 22px;
    cursor: pointer;
    transform: translateY(-50%);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.10);
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}


.team-slider-prev {
    left: 15px;
}


.team-slider-next {
    right: 15px;
}


.team-slider-arrow:hover {
    background: #a85a6a;
    color: #ffffff;
}


.team-slider-prev:hover {
    transform: translate(-3px, -50%);
}


.team-slider-next:hover {
    transform: translate(3px, -50%);
}


/* =========================================================
   BOTTOM NAVIGATION
   ========================================================= */

.team-slider-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-top: 0px;
}


.team-slider-counter {
    color: #777;
    font-size: 13px;
    letter-spacing: 1px;
    white-space: nowrap;
}


.team-slider-dots {
    display: flex;
    align-items: center;
    gap: 7px;
}


    .team-slider-dots button {
        width: 7px;
        height: 7px;
        padding: 0;
        border: none;
        border-radius: 50%;
        background: #d5d5d5;
        cursor: pointer;
        transition: width 0.25s ease, background 0.25s ease;
    }


        .team-slider-dots button.is-active {
            width: 28px;
            border-radius: 10px;
            background: #a85a6a;
        }


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .team-slider .team-profile.is-active {
        display: flex;
        flex-direction: column;
    }


    .team-slider-arrow {
        width: 42px;
        height: 42px;
        font-size: 19px;
    }


    .team-slider-prev {
        left: 8px;
    }


    .team-slider-next {
        right: 8px;
    }


    .team-slider-navigation {
        margin-top: 22px;
        gap: 18px;
    }
}


/*
why choose use form LP*/

/* ============================================================
   WHY CHOOSE INTERIORS360
   ============================================================ */

.why-choose-section {
    position: relative;
    padding: 120px 0 130px;
    overflow: hidden;
}

.why-choose-inner {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
}


/* ============================================================
   HEADER
   ============================================================ */

.why-choose-header {
    max-width: 850px;
    margin: 0 auto 100px;
    text-align: center;
}

.why-choose-eyebrow {
    display: inline-block;
    margin-bottom: 22px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    /*text-transform: uppercase;*/
    color: #9b274f;
}

.why-choose-title {
    margin: 0;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.04;
    font-weight: 500;
    letter-spacing: -0.035em;
    color: #9b274f;
}

.why-choose-introduction {
    max-width: 700px;
    margin: 28px auto 0;
    font-size: 17px;
    line-height: 1.8;
    color: #665d60;
}


/* ============================================================
   LIST
   ============================================================ */

.why-choose-list {
    display: flex;
    flex-direction: column;
    gap: 90px;
}


/* ============================================================
   ITEM
   ============================================================ */

.why-choose-item {
    position: relative;
}

.why-choose-item-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
    align-items: center;
    gap: 90px;
}


/* ============================================================
   ALTERNATING LAYOUT
   ============================================================ */

.why-choose-item:nth-child(even)
.why-choose-item-inner {
    grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1.15fr);
}

.why-choose-item:nth-child(even)
.why-choose-image-wrap {
    order: 2;
}

.why-choose-item:nth-child(even)
.why-choose-content {
    order: 1;
}


/* ============================================================
   IMAGE
   ============================================================ */

.why-choose-image-wrap {
    position: relative;
    aspect-ratio: 1.35 / 1;
    overflow: hidden;
    background: #e9e2e5;
}

.why-choose-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(.22,.61,.36,1);
}

.why-choose-item:hover .why-choose-image {
    transform: scale(1.035);
}


/* ============================================================
   IMAGE DETAIL
   ============================================================ */

.why-choose-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient( 180deg, rgba(0,0,0,0) 65%, rgba(0,0,0,.12) );
}


/* ============================================================
   CONTENT
   ============================================================ */

.why-choose-content {
    max-width: 520px;
}

.why-choose-number {
    display: block;
    margin-bottom: 26px;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.16em;
    color: #9b274f;
}

.why-choose-label {
    display: block;
    margin-bottom: 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    line-height: 1.5;
    color: #8b7d82;
    text-transform: uppercase;
}

.why-choose-item-title {
    margin: 0 0 22px;
    font-size: clamp(30px, 3vw, 46px);
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: -0.025em;
    color: #171315;
    font-family: 'Sans Serif Collection';
}

.why-choose-item-description {
    margin: 0;
    max-width: 500px;
    font-size: 16px;
    line-height: 1.85;
    color: #665d60;
}


/* ============================================================
   SEPARATOR
   ============================================================ */

.why-choose-item:not(:last-child)::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    margin-top: 90px;
    background: #ded5d9;
}


/* ============================================================
   CLOSING STATEMENT
   ============================================================ */

.why-choose-closing {
    max-width: 850px;
    margin: 130px auto 0;
    text-align: center;
}

.why-choose-closing-line {
    display: block;
    width: 45px;
    height: 2px;
    margin: 0 auto 32px;
    background: #9b274f;
}

.why-choose-closing h3 {
    margin: 0;
    font-size: clamp(28px, 4vw, 52px);
    line-height: 1.12;
    font-weight: 500;
    letter-spacing: -0.03em;
    color: #171315;
}

.why-choose-closing p {
    max-width: 600px;
    margin: 22px auto 0;
    font-size: 17px;
    line-height: 1.7;
    color: #665d60;
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 900px) {

    .why-choose-section {
        padding: 90px 0 100px;
    }

    .why-choose-header {
        margin-bottom: 70px;
    }

    .why-choose-list {
        gap: 60px;
    }

    .why-choose-item-inner,
    .why-choose-item:nth-child(even)
    .why-choose-item-inner {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .why-choose-item:nth-child(even)
    .why-choose-image-wrap {
        order: 1;
    }

    .why-choose-item:nth-child(even)
    .why-choose-content {
        order: 2;
    }

    .why-choose-content {
        max-width: 700px;
    }

    .why-choose-item:not(:last-child)::after {
        margin-top: 60px;
    }

    .why-choose-closing {
        margin-top: 90px;
    }
}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 600px) {

    .why-choose-section {
        padding: 72px 0 80px;
    }

    .why-choose-inner {
        width: min(100% - 32px, 1280px);
    }

    .why-choose-header {
        margin-bottom: 55px;
    }

    .why-choose-eyebrow {
        font-size: 10px;
        letter-spacing: 0.16em;
    }

    .why-choose-title {
        font-size: 39px;
        line-height: 1.06;
    }

    .why-choose-introduction {
        margin-top: 20px;
        font-size: 15px;
        line-height: 1.7;
    }

    .why-choose-list {
        gap: 45px;
    }

    .why-choose-image-wrap {
        aspect-ratio: 1.12 / 1;
    }

    .why-choose-content {
        padding: 0 5px;
    }

    .why-choose-number {
        margin-bottom: 18px;
    }

    .why-choose-label {
        font-size: 9px;
        letter-spacing: 0.15em;
    }

    .why-choose-item-title {
        font-size: 30px;
        line-height: 1.12;
        margin-bottom: 16px;
    }

    .why-choose-item-description {
        font-size: 15px;
        line-height: 1.75;
    }

    .why-choose-item:not(:last-child)::after {
        margin-top: 45px;
    }

    .why-choose-closing {
        margin-top: 70px;
    }

    .why-choose-closing h3 {
        font-size: 30px;
    }

    .why-choose-closing p {
        font-size: 15px;
    }
}


/* ============================================================
   BUILDER PROJECT SCROLLER
   ============================================================ */

.builder-projects {
    padding: 90px 0;
    background: #ffffff;
    overflow: hidden;
}

.builder-projects-inner {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
}


/* ============================================================
   HEADER
   ============================================================ */

.builder-projects-header {
    margin-bottom: 42px;
}

.builder-projects-eyebrow {
    display: block;
    margin-bottom: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #9b274f;
}

.builder-projects-title {
    margin: 0;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: -0.03em;
    color: #171315;
}


/* ============================================================
   SCROLL AREA
   ============================================================ */

.builder-projects-scroll {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 12px;
    scrollbar-width: thin;
    scrollbar-color: #c9bec2 transparent;
    -webkit-overflow-scrolling: touch;
}

    .builder-projects-scroll::-webkit-scrollbar {
        height: 5px;
    }

    .builder-projects-scroll::-webkit-scrollbar-track {
        background: transparent;
    }

    .builder-projects-scroll::-webkit-scrollbar-thumb {
        background: #c9bec2;
        border-radius: 20px;
    }


/* ============================================================
   TRACK
   ============================================================ */

.builder-projects-track {
    display: flex;
    gap: 24px;
    width: max-content;
}


/* ============================================================
   PROJECT
   ============================================================ */

.builder-project {
    flex: 0 0 260px;
}


/* ============================================================
   IMAGE
   ============================================================ */

.builder-project-image {
    width: 260px;
    height: 155px;
    overflow: hidden;
    background: #eee8ea;
}

    .builder-project-image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        transition: transform 0.6s cubic-bezier(.22,.61,.36,1);
    }

.builder-project:hover .builder-project-image img {
    transform: scale(1.04);
}


/* ============================================================
   NAME
   ============================================================ */

.builder-project-name {
    margin: 14px 0 0;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 500;
    color: #252023;
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 900px) {

    .builder-projects {
        padding: 75px 0;
    }

    .builder-project {
        flex-basis: 230px;
    }

    .builder-project-image {
        width: 230px;
        height: 140px;
    }
}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 600px) {

    .builder-projects {
        padding: 65px 0;
    }

    .builder-projects-inner {
        width: calc(100% - 32px);
    }

    .builder-projects-header {
        margin-bottom: 30px;
    }

    .builder-projects-eyebrow {
        font-size: 9px;
        letter-spacing: 0.14em;
    }

    .builder-projects-title {
        font-size: 32px;
    }

    .builder-projects-track {
        gap: 16px;
    }

    .builder-project {
        flex-basis: 210px;
    }

    .builder-project-image {
        width: 210px;
        height: 125px;
    }

    .builder-project-name {
        margin-top: 11px;
        font-size: 15px;
    }
}