:root {
    --dark: #2B2A2C;
    --gray: #6A696B;
    --light-gray: #b6b6b6;
    --very-light-gray: #e1e1e1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
}

body {
    color: var(--dark);
    line-height: 1.6;
}

body.modal-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

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

button {
    color: inherit;
}



.container {
    width: min(1120px, 90vw);
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1.6rem;
    border-radius: 999px;
    border: 2px solid rgba(27, 27, 27);
    background: transparent;
    color: var(--dark);
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.btnOutline {
    border: 1px solid #2B2A2C;
    background: transparent;
    color: #2B2A2C;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    padding: 0.6rem 2.2rem;
    font-weight: 400;
}
.btnBlack {
    background: #000!important;
    color: #fff!important;
    font-weight: 300!important;
}

.separatorLine {
    content: "";
    display: block;
    width: min(1120px, 90vw);
    height: .5px;
    background: var(--light-gray);
    margin: 2rem auto;
}

.sectionTitle {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1rem;
}








header {
    padding: 1.5rem 0;
}

header .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
}

.headerTop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 1rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.brand img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.brandName {
    font-weight: 700;
    display: block;
    line-height: 1.2;
}

.brandRole {
    font-size: 0.85rem;
    color: var(--muted);
}

.navToggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(43, 42, 44, 0.3);
    background: transparent;
    cursor: pointer;
}

.navBar {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--dark);
}

.navMenu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 1rem 1.2rem;
    border-radius: 12px;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    visibility: hidden;
    z-index: 10;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.navMenu.isOpen {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
}

.navMenu a {
    position: relative;
    padding-bottom: 0.4rem;
    width: 100%;
    text-align: center;
}

.navMenu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.3rem;
    width: 0;
    height: 2px;
    background: #2B2A2C;
    transition: width 0.2s ease;
}
.navMenu a:hover::after,
.navMenu a:focus-visible::after {
    width: 100%;
}






.hero {
    padding: 2.5rem 0 0;
}

.heroInner {
    display: flex;
    justify-content: space-between;
}

.heroHello {
    font-size: 2rem;
    line-height: 1;
    font-weight: 100;
}
.heroName {
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0.3rem 0;
    line-height: 1;
}
.heroRole {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.heroSocial {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: 2rem;
}
.heroSocial a {
    width: 32px;
    height: 32px;
}

.customIcon {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #13578A;
}

.customIcon img {
    width: 20px;
    height: 20px;
    filter: invert();
}

.instagramIcon {
    background-color: #13578A;
}
.xIcon {
    background-color: #000000;
}





.heroImage {
    display: none;
    width: 40%;
    margin-left: 2rem;
}






.projects {
    padding: 0 0 4rem;
}

.projectsFilters {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: .5rem 1rem;
    margin-bottom: 2rem;
}

.projectsFilters p {
    padding: 0.5rem .5rem;
    cursor: pointer;
    color: var(--light-gray);
    transition: color 0.2s ease;
}

.projectsFilters p:hover {
    color: var(--dark);
}





.projectGrid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.8rem;
}

.projectCard {
    border: none;
    padding: 0;
    text-align: left;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.projectCard:hover,
.projectCard:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

.projectCard img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.projectCardInfo {
    display: flex;
    flex-direction: column;
    padding: .6rem;
}

.projectSub {
    font-size: 0.75rem;
    color: var(--dark);
    margin-bottom: 0.3rem;
    font-weight: 100;
}

.projectCardMeta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1rem;
    gap: 1rem;
}












.aboutInner {
    display: flex;
    gap: 2rem;
}

.aboutImage {
    display: none;
    min-width: 40%;
}

.aboutContent {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.aboutContent span {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--very-light-gray);
    line-height: 1;
    margin-bottom: 1rem;
}
.aboutContentImage {
    width: 200px;
    margin: 0 auto;
}
.aboutContent p {
    color: var(--gray);
    font-weight: 200;
    margin: 1rem 0 2rem;
}

.aboutContent .btn {
    align-self: flex-start;
}






.review {
    background: #ffffff;
    padding: 5rem 0;
}

.reviewInner {
    background-color: var(--dark);
    background-image: url("images/section-back.svg");
    background-repeat: repeat;
    background-size: 1400px;
    background-position: center;
    padding: 3.5rem 0 4rem;
    text-align: center;
}

.reviewText {
    font-style: italic;
    font-weight: 300;
    color: #eaeaea;
    font-size: 1.2rem;
}

.reviewProfile {
    margin-top: -45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.reviewAvatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--very-light-gray);
}

.reviewName {
    margin-top: 0.7rem;
    font-weight: 700;
    font-size: 1rem;
}

.reviewRole {
    margin-top: 0.1rem;
    font-size: 0.9rem;
    color: #7a7a7a;
    font-style: italic;
    font-weight: 200;
}

.reviewStars {
    margin-top: 0.4rem;
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: #2B2A2C;
}









.blog {
    padding: 0 0 5rem;
}

.blogInfo {
    text-align: center;
    margin-bottom: 3rem;
}

.blogDescription {
    color: #8f8f8f;
    font-weight: 300;
    font-size: 1rem;
    margin-top: 0.6rem;
}

.blogGrid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.blogCard {
    background: transparent;
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 1rem;
}

.blogCardMedia {
    position: relative;
}

.blogCardMedia img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blogCardDate {
    position: absolute;
    top: 0;
    left: 0;
    width: 64px;
    height: 64px;
    background: #2B2A2C;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    line-height: 1;
}

.blogCardDay {
    font-size: .75rem;
}

.blogCardMonth {
    font-size: .75rem;
    margin-top: 0.25rem;
}

.blogCardBody {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
}

.blogCardTitle {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.blogCardText {
    color: #8f8f8f;
    font-weight: 300;
    line-height: 1.7;
}













.siteFooter {
    background: var(--dark);
    padding: 1.2rem 0;
}

.footerInner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footerText {
    color: var(--light-gray);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
}

.footerText::after {
    content: "";
    display: none;
    width: 1px;
    height: 14px;
    background: var(--gray);
    margin-left: 1rem;
}

.footerBtn {
    border-color: var(--light-gray);
    color: #ffffff;
}

.footerBtn.btnOutline {
    border-width: 1px;
}

.modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: radial-gradient(circle at top, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.6));
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modalCard {
    position: relative;
    width: min(980px, 95vw);
    max-height: 90vh;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.modal.is-open .modalCard {
    opacity: 1;
    transform: translateY(0);
}

.modalClose {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: var(--dark);
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.modalCloseDark {
    background: #2B2A2C;
    color: #fff;
}

.contactModal {
    display: grid;
    grid-template-columns: 1fr;
}

.contactLeft {
    padding: 2.5rem 2rem 2.8rem;
}

.contactTitle {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.contactSubtitle {
    margin-top: 0.4rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.85rem;
    font-weight: 400;
}

.contactInfo {
    margin-top: 1.6rem;
    display: grid;
    gap: 0.8rem;
}

.contactInfoRow {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
}

.contactIcon {
    width: 28px;
    height: 28px;
    border: 1px solid var(--very-light-gray);
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--dark);
    background: #ffffff;
}

.contactForm {
    margin-top: 2rem;
    display: grid;
    gap: 1.2rem;
}

.contactLabel {
    display: grid;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.contactInput,
.contactTextarea {
    width: 100%;
    border: 1px solid var(--very-light-gray);
    padding: 0.9rem 1.2rem;
    font-size: 0.95rem;
    color: var(--dark);
    background: #ffffff;
}

.contactInput {
    border-radius: 999px;
}

.contactTextarea {
    border-radius: 18px;
    min-height: 140px;
    resize: vertical;
}

.contactSubmit {
    justify-self: end;
    margin-top: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    padding: 0.7rem 2.6rem;
    width: auto;
}

.contactRight {
    display: none;
    height: 100%;
}

.contactRight img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.projectModalCard {
    width: min(1100px, 95vw);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.projectModal {
    display: grid;
    grid-template-columns: 1fr;
}

.projectModalMedia {
    min-height: 240px;
}

.projectModalMedia img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.projectModalContent {
    padding: 2.5rem 2rem 3rem;
    overflow-y: auto;
}

.projectModalTitle {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.projectModalMeta {
    margin-top: 0.4rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.8rem;
}

.projectModalClient {
    margin-top: 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    font-size: 0.95rem;
}

.projectModalLabel {
    font-weight: 600;
}

.projectModalValue {
    color: var(--gray);
    font-style: italic;
}

.projectModalText {
    margin-top: 1rem;
    color: var(--gray);
    font-weight: 300;
    line-height: 1.8;
}










@media only screen and (min-width: 572px) {
    
}

@media only screen and (min-width: 768px) {
    header .container {
        flex-direction: row;
        align-items: center;
    }

    .headerTop {
        width: auto;
    }

    .navToggle {
        display: none;
    }

    .navMenu {
        flex-direction: row;
        align-items: baseline;
        gap: 1.5rem;
        width: auto;
        position: static;
        background: transparent;
        padding: 0;
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        visibility: visible;
        margin-left: auto;
        text-align: left;
    }

    .navMenu a {
        width: auto;
        text-align: left;
    }

    .heroImage {
        display: block;
    }




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



    .aboutContentImage {
        display: none;
    }
    .aboutImage {
        display: block;
    }

    .sectionTitle {
        font-size: 2.8rem;
    }
    .aboutContent span {
        font-size: 4.5rem;
    }

    .footerInner {
        flex-direction: row;
        justify-content: space-between;
    }

    .footerText::after {
        display: inline-block;
    }

    .contactModal {
        grid-template-columns: repeat(2, 1fr);
        min-height: 520px;
    }

    .contactLeft {
        padding: 3rem;
    }

    .contactRight {
        display: block;
    }

    .projectModal {
        grid-template-columns: 1.2fr 0.8fr;
        min-height: 520px;
    }

    .projectModalMedia {
        min-height: 100%;
    }
}

@media only screen and (min-width: 1024px) {
    .projectGrid,.blogGrid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .aboutImage {
        display: block;
        min-width: 50%;
    }

    .review {
        padding: 10rem 0;
    }
}
