@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Manrope:wght@300;400;500;600;700;800&display=swap');


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

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


html {
    scroll-behavior: smooth;
}


body {
    font-family: "Inter", Arial, sans-serif;

    background: #f5f5f2;

    color: #111;

    line-height: 1.6;

    overflow-x: hidden;
}


a {
    color: inherit;

    text-decoration: none;
}


button {
    font-family: inherit;
}


:root {

    --blue: #0b3b82;

    --blue-dark: #062b61;

    --black: #111;

    --dark: #151515;

    --grey: #777;

    --light: #f5f5f2;

    --white: #fff;

    --border: #dcdcd7;

    --container: 1380px;
}



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

.section {

    padding: 140px 5vw;

}


.section-label {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 80px;
}


.section-label span {

    font-size: 12px;

    color: var(--blue);

    font-weight: 700;

}


.section-label p {

    font-size: 11px;

    letter-spacing: 3px;

    font-weight: 600;
}


h1,
h2,
h3,
h4 {

    font-family: "Manrope", sans-serif;

}



/* =====================================================
   INTRO PAGE
===================================================== */

.intro {

    position: fixed;

    inset: 0;

    z-index: 9999;

    background: #111;

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    transition:
        opacity 1s ease,
        visibility 1s ease;
}


.intro.hide {

    opacity: 0;

    visibility: hidden;

    pointer-events: none;
}


.intro-image {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            120deg,
            #111 0%,
            #222 45%,
            #111 100%
        );

    transform: scale(1.05);

    animation: introZoom 10s ease forwards;
}


@keyframes introZoom {

    from {
        transform: scale(1.05);
    }

    to {
        transform: scale(1.15);
    }

}


.intro-overlay {

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at center,
            rgba(255,255,255,0.05),
            rgba(0,0,0,0.85)
        );
}


.intro-content {

    position: relative;

    z-index: 2;

    text-align: center;

    display: flex;

    flex-direction: column;

    align-items: center;
}


.intro-logo {

    width: min(480px, 75vw);

    max-height: 220px;

    object-fit: contain;

    background: white;

    padding: 25px;

    animation:
        logoReveal 1.5s ease forwards;

}


@keyframes logoReveal {

    from {

        opacity: 0;

        transform: translateY(30px) scale(.95);

    }

    to {

        opacity: 1;

        transform: translateY(0) scale(1);

    }

}


.intro-line {

    width: 70px;

    height: 1px;

    background: rgba(255,255,255,.5);

    margin: 35px 0 20px;
}


.intro-subtitle {

    font-size: 10px;

    letter-spacing: 5px;

    color: rgba(255,255,255,.65);

    margin-bottom: 45px;
}


.continue-btn {

    display: flex;

    align-items: center;

    gap: 25px;

    padding: 17px 30px;

    background: transparent;

    color: white;

    border: 1px solid rgba(255,255,255,.45);

    cursor: pointer;

    font-size: 11px;

    letter-spacing: 3px;

    transition: .4s;

    animation: dancingButton 2s infinite;
}


@keyframes dancingButton {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-8px);

    }

}


.continue-btn:hover {

    background: white;

    color: #111;

    border-color: white;

    animation: none;

}


.continue-arrow {

    font-size: 20px;

}


.intro-bottom {

    position: absolute;

    z-index: 2;

    bottom: 35px;

    left: 5vw;

    right: 5vw;

    display: flex;

    justify-content: space-between;

    font-size: 9px;

    letter-spacing: 3px;

    color: rgba(255,255,255,.45);
}



/* =====================================================
   MAIN SITE
===================================================== */

.main-site {

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 1s ease;
}


.main-site.show {

    opacity: 1;

    visibility: visible;
}



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

.header {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 1000;

    background: rgba(245,245,242,.94);

    backdrop-filter: blur(15px);

    border-bottom: 1px solid rgba(0,0,0,.08);
}


.header-inner {

    height: 92px;

    padding: 0 5vw;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.nav-logo img {

    width: 190px;

    max-height: 55px;

    object-fit: contain;
}


.navbar {

    display: flex;

    gap: 42px;

    margin-left: auto;

    margin-right: 45px;
}


.navbar a {

    font-size: 10px;

    letter-spacing: 2px;

    font-weight: 600;

    position: relative;
}


.navbar a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -9px;

    width: 0;

    height: 1px;

    background: var(--blue);

    transition: .3s;
}


.navbar a:hover::after {

    width: 100%;
}


.header-contact {

    display: flex;

    gap: 15px;

    align-items: center;

    padding: 14px 20px;

    background: var(--blue);

    color: white;

    font-size: 9px;

    letter-spacing: 2px;
}


.header-contact span {

    font-size: 17px;
}


.menu-btn {

    display: none;

    border: 0;

    background: none;

    font-size: 25px;

    cursor: pointer;
}



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

.hero {

    height: 100vh;

    min-height: 700px;

    position: relative;

    display: flex;

    align-items: center;

    overflow: hidden;
}


.hero-image {

    position: absolute;

    inset: 0;

    background-image:
        url("hero.jpg");

    background-size: cover;

    background-position: center;

    transform: scale(1.03);

    animation: heroZoom 12s ease forwards;
}


@keyframes heroZoom {

    from {

        transform: scale(1.08);

    }

    to {

        transform: scale(1);

    }

}


.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(10,15,20,.88) 0%,
            rgba(10,15,20,.63) 40%,
            rgba(10,15,20,.15) 80%
        );
}


.hero-content {

    position: relative;

    z-index: 2;

    max-width: 900px;

    margin-left: 8vw;

    color: white;
}


.eyebrow {

    font-size: 10px;

    letter-spacing: 4px;

    margin-bottom: 30px;

    color: rgba(255,255,255,.65);
}


.hero h1 {

    font-size: clamp(60px, 8vw, 120px);

    line-height: .91;

    font-weight: 500;

    letter-spacing: -5px;

    margin-bottom: 35px;
}


.hero h1 span {

    color: #b9cce7;

}


.hero-description {

    max-width: 580px;

    color: rgba(255,255,255,.7);

    font-size: 15px;

    line-height: 1.9;

    margin-bottom: 40px;
}


.hero-actions {

    display: flex;

    gap: 15px;
}


.main-btn,
.outline-btn {

    padding: 17px 25px;

    display: flex;

    align-items: center;

    gap: 25px;

    font-size: 9px;

    letter-spacing: 2px;

    transition: .35s;
}


.main-btn {

    background: white;

    color: #111;
}


.main-btn:hover {

    background: var(--blue);

    color: white;

}


.outline-btn {

    border: 1px solid rgba(255,255,255,.4);

    color: white;
}


.outline-btn:hover {

    background: white;

    color: #111;
}


.hero-scroll {

    position: absolute;

    z-index: 2;

    bottom: 35px;

    left: 8vw;

    display: flex;

    align-items: center;

    gap: 15px;

    color: rgba(255,255,255,.6);

    font-size: 8px;

    letter-spacing: 3px;
}


.hero-scroll div {

    width: 60px;

    height: 1px;

    background: rgba(255,255,255,.5);
}



/* =====================================================
   STATEMENT
===================================================== */

.statement {

    padding: 170px 8vw;

    background: var(--light);
}


.statement-inner {

    max-width: 1200px;

    margin: auto;
}


.small-title {

    color: var(--blue);

    font-size: 10px;

    letter-spacing: 4px;

    font-weight: 600;

    margin-bottom: 30px;
}


.statement h2 {

    font-size: clamp(45px, 7vw, 100px);

    line-height: .98;

    letter-spacing: -4px;

    font-weight: 400;
}


.statement h2 span {

    color: var(--blue);
}



/* =====================================================
   ABOUT
===================================================== */

.about {

    background: white;
}


.about-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    max-width: 1200px;

    margin: auto;
}


.about-heading h2 {

    font-size: clamp(50px, 7vw, 100px);

    line-height: .9;

    letter-spacing: -4px;

    font-weight: 400;
}


.about-heading h2 span {

    color: var(--blue);
}


.about-text {

    max-width: 600px;
}


.about-text p {

    color: #666;

    font-size: 15px;

    line-height: 1.9;

    margin-bottom: 25px;
}


.about-text .large-text {

    font-size: 22px;

    color: #222;

    line-height: 1.6;
}


.text-link {

    display: inline-flex;

    gap: 20px;

    margin-top: 20px;

    color: var(--blue);

    font-size: 10px;

    letter-spacing: 2px;

    font-weight: 700;

    border-bottom: 1px solid var(--blue);

    padding-bottom: 10px;
}



/* =====================================================
   EXPERIENCE
===================================================== */

.experience {

    min-height: 700px;

    position: relative;

    display: flex;

    align-items: center;

    overflow: hidden;
}


.experience-image {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.85),
            rgba(0,0,0,.2)
        ),
        url("hero.jpg");

    background-size: cover;

    background-position: center;
}


.experience-content {

    position: relative;

    z-index: 2;

    color: white;

    margin-left: 8vw;

    max-width: 650px;
}


.experience-content h2 {

    font-size: clamp(50px, 7vw, 100px);

    line-height: .92;

    letter-spacing: -4px;

    font-weight: 400;

    margin-bottom: 35px;
}


.experience-content h2 span {

    color: #a9c6e9;
}


.experience-content > p:last-child {

    max-width: 500px;

    color: rgba(255,255,255,.65);

    line-height: 1.9;
}



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

.services {

    background: #f5f5f2;
}


.services-header {

    max-width: 1200px;

    margin: 0 auto 70px;

    display: flex;

    align-items: end;

    justify-content: space-between;

    gap: 50px;
}


.services-header h2 {

    font-size: clamp(55px, 7vw, 100px);

    font-weight: 400;

    line-height: .9;

    letter-spacing: -4px;
}


.services-header h2 span {

    color: var(--blue);
}


.services-header > p {

    max-width: 400px;

    color: #777;

    font-size: 14px;
}


.services-grid {

    max-width: 1200px;

    margin: auto;

    display: grid;

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

    border-top: 1px solid var(--border);

    border-left: 1px solid var(--border);
}


.service {

    min-height: 360px;

    padding: 35px;

    border-right: 1px solid var(--border);

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

    position: relative;

    transition: .4s;
}


.service:hover {

    background: white;

    transform: translateY(-5px);

}


.service-number {

    position: absolute;

    right: 30px;

    top: 30px;

    font-size: 10px;

    color: #aaa;
}


.service-icon {

    font-size: 35px;

    color: var(--blue);

    margin-bottom: 35px;
}


.service h3 {

    font-size: 22px;

    line-height: 1.1;

    font-weight: 500;

    margin-bottom: 20px;
}


.service p {

    color: #777;

    font-size: 13px;

    line-height: 1.8;

    max-width: 330px;

    margin-bottom: 30px;
}


.service a {

    color: var(--blue);

    font-size: 9px;

    letter-spacing: 2px;

    font-weight: 700;
}



/* =====================================================
   DARK STATEMENT
===================================================== */

.dark-statement {

    background: #101010;

    color: white;

    padding: 170px 8vw;
}


.dark-statement-inner {

    max-width: 1100px;

    margin: auto;
}


.dark-statement-inner > p:first-child {

    font-size: 10px;

    letter-spacing: 4px;

    color: #8db7e8;

    margin-bottom: 35px;
}


.dark-statement h2 {

    font-size: clamp(55px, 8vw, 115px);

    line-height: .9;

    letter-spacing: -5px;

    font-weight: 400;
}


.dark-statement h2 span {

    color: #8db7e8;
}


.dark-line {

    width: 100%;

    height: 1px;

    background: rgba(255,255,255,.15);

    margin: 60px 0 25px;
}


.dark-description {

    max-width: 500px;

    color: rgba(255,255,255,.55);

    font-size: 14px;

    line-height: 1.9;
}



/* =====================================================
   WHY
===================================================== */

.why {

    background: white;
}


.why-grid {

    max-width: 1200px;

    margin: auto;

    display: grid;

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

    border-top: 1px solid var(--border);

    border-left: 1px solid var(--border);
}


.why-item {

    min-height: 300px;

    padding: 35px;

    border-right: 1px solid var(--border);

    border-bottom: 1px solid var(--border);
}


.why-item > span {

    color: var(--blue);

    font-size: 11px;

    font-weight: 700;
}


.why-item h3 {

    margin-top: 100px;

    font-size: 24px;

    font-weight: 500;
}


.why-item p {

    color: #777;

    font-size: 13px;

    margin-top: 12px;

    line-height: 1.7;
}



/* =====================================================
   PROJECTS
===================================================== */

.projects {

    background: #f5f5f2;
}


.projects-header {

    max-width: 1200px;

    margin: 0 auto 60px;

    display: flex;

    justify-content: space-between;

    align-items: end;
}


.projects-header h2 {

    font-size: clamp(55px, 7vw, 100px);

    font-weight: 400;

    line-height: .9;

    letter-spacing: -4px;
}


.projects-header h2 span {

    color: var(--blue);
}


.projects-header p {

    max-width: 350px;

    color: #777;

    font-size: 13px;
}


.projects-grid {

    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: 1.4fr 1fr 1fr;

    height: 600px;
}


.project {

    position: relative;

    background-size: cover;

    background-position: center;

    overflow: hidden;
}


.project-one {

    background-image: url("project1.jpg");

}


.project-two {

    background-image: url("project2.jpg");

}


.project-three {

    background-image: url("project3.jpg");

}


.project-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.8),
            transparent 65%
        );
}


.project-info {

    position: absolute;

    z-index: 2;

    left: 30px;

    right: 30px;

    bottom: 30px;

    color: white;
}


.project-info span {

    font-size: 9px;

    letter-spacing: 3px;

    color: #a9c6e9;
}


.project-info h3 {

    font-size: 27px;

    line-height: 1.1;

    font-weight: 400;

    margin: 8px 0 20px;
}


.project-info a {

    font-size: 9px;

    letter-spacing: 2px;
}



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

.cta {

    background: var(--blue);

    color: white;

    padding: 120px 8vw;
}


.cta-inner {

    max-width: 1200px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;
}


.cta-inner p {

    font-size: 10px;

    letter-spacing: 4px;

    margin-bottom: 30px;

    color: rgba(255,255,255,.65);
}


.cta h2 {

    font-size: clamp(50px, 7vw, 95px);

    line-height: .9;

    font-weight: 400;

    letter-spacing: -4px;
}


.cta h2 span {

    color: #a9c6e9;
}


.cta-btn {

    padding: 20px 28px;

    background: white;

    color: #111;

    display: flex;

    align-items: center;

    gap: 30px;

    font-size: 9px;

    letter-spacing: 2px;

    white-space: nowrap;
}



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

.contact {

    background: white;
}


.contact-grid {

    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr .8fr 1.3fr;

    gap: 70px;
}


.contact-heading h2 {

    font-size: clamp(55px, 7vw, 100px);

    font-weight: 400;

    line-height: .9;

    letter-spacing: -4px;
}


.contact-heading h2 span {

    color: var(--blue);
}


.contact-heading p {

    color: #777;

    margin-top: 35px;

    max-width: 350px;
}


.contact-details > div {

    padding: 0 0 25px;

    margin-bottom: 25px;

    border-bottom: 1px solid var(--border);
}


.contact-details span {

    display: block;

    color: var(--blue);

    font-size: 9px;

    letter-spacing: 3px;

    margin-bottom: 8px;
}


.contact-details strong {

    font-size: 14px;

    font-weight: 500;
}


.contact-form {

    display: flex;

    flex-direction: column;

    gap: 14px;
}


.contact-form input,
.contact-form textarea {

    width: 100%;

    padding: 17px;

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

    background: #f7f7f4;

    outline: none;

    font-family: inherit;

    font-size: 11px;

    letter-spacing: 1px;
}


.contact-form input:focus,
.contact-form textarea:focus {

    border-color: var(--blue);

}


.contact-form button {

    align-self: flex-start;

    border: 0;

    background: var(--blue);

    color: white;

    padding: 18px 25px;

    font-size: 9px;

    letter-spacing: 2px;

    cursor: pointer;

    display: flex;

    gap: 25px;
}



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

footer {

    background: #101010;

    color: white;

    padding: 80px 5vw 25px;
}


.footer-top {

    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: 2fr 1fr 1fr;

    gap: 80px;

    padding-bottom: 70px;
}


.footer-brand img {

    width: 210px;

    background: white;

    padding: 10px;

    margin-bottom: 25px;
}


.footer-brand p {

    max-width: 350px;

    color: rgba(255,255,255,.45);

    font-size: 13px;

    line-height: 1.8;
}


.footer-top h4 {

    font-size: 10px;

    letter-spacing: 3px;

    margin-bottom: 25px;
}


.footer-top a,
.footer-top p {

    display: block;

    color: rgba(255,255,255,.5);

    font-size: 11px;

    margin-bottom: 12px;
}


.footer-top a:hover {

    color: white;
}


.footer-bottom {

    max-width: 1200px;

    margin: auto;

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

    padding-top: 20px;

    display: flex;

    justify-content: space-between;

    color: rgba(255,255,255,.3);

    font-size: 9px;

    letter-spacing: 1px;
}



/* =====================================================
   WHATSAPP
===================================================== */

.whatsapp {

    position: fixed;

    right: 25px;

    bottom: 25px;

    z-index: 2000;

    background: #25d366;

    color: white;

    padding: 13px 20px;

    border-radius: 30px;

    font-size: 11px;

    font-weight: 600;

    box-shadow: 0 5px 25px rgba(0,0,0,.2);

    transition: .3s;
}


.whatsapp:hover {

    transform: translateY(-5px);

}



/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:1000px) {

    .navbar {

        gap: 20px;

        margin-right: 20px;

    }


    .header-contact {

        display: none;

    }


    .services-grid {

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

    }


    .why-grid {

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

    }


    .projects-grid {

        grid-template-columns: 1fr 1fr;

        height: 500px;

    }


    .project-one {

        grid-row: span 2;

    }


    .contact-grid {

        grid-template-columns: 1fr 1fr;

    }


    .contact-form {

        grid-column: span 2;

    }

}



@media(max-width:750px) {

    .header-inner {

        height: 75px;

    }


    .nav-logo img {

        width: 160px;

    }


    .navbar {

        display: none;

        position: absolute;

        top: 75px;

        left: 0;

        width: 100%;

        background: #f5f5f2;

        flex-direction: column;

        gap: 0;

        padding: 10px 5vw;

        margin: 0;

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

    }


    .navbar.show {

        display: flex;

    }


    .navbar a {

        padding: 16px 0;

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

    }


    .menu-btn {

        display: block;

    }


    .hero {

        min-height: 650px;

    }


    .hero-content {

        margin-left: 7vw;

        margin-right: 7vw;

    }


    .hero h1 {

        font-size: clamp(55px, 14vw, 85px);

        letter-spacing: -3px;

    }


    .hero-description {

        font-size: 14px;

    }


    .hero-actions {

        flex-direction: column;

        align-items: flex-start;

    }


    .statement {

        padding: 110px 7vw;

    }


    .section {

        padding: 100px 7vw;

    }


    .section-label {

        margin-bottom: 55px;

    }


    .about-grid {

        grid-template-columns: 1fr;

        gap: 60px;

    }


    .experience {

        min-height: 600px;

    }


    .experience-content {

        margin: 0 7vw;

    }


    .services-header {

        flex-direction: column;

        align-items: flex-start;

    }


    .services-grid {

        grid-template-columns: 1fr;

    }


    .why-grid {

        grid-template-columns: 1fr;

    }


    .why-item h3 {

        margin-top: 60px;

    }


    .projects-header {

        flex-direction: column;

        align-items: flex-start;

        gap: 30px;

    }


    .projects-grid {

        grid-template-columns: 1fr;

        height: auto;

    }


    .project {

        height: 400px;

    }


    .project-one {

        grid-row: auto;

    }


    .cta {

        padding: 100px 7vw;

    }


    .cta-inner {

        flex-direction: column;

        align-items: flex-start;

    }


    .contact-grid {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .contact-form {

        grid-column: auto;

    }


    .footer-top {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .footer-bottom {

        flex-direction: column;

        gap: 10px;

    }

}



@media(max-width:500px) {

    .intro-logo {

        width: 75vw;

        padding: 18px;

    }


    .intro-bottom {

        font-size: 7px;

    }


    .intro-bottom span:nth-child(3) {

        display: none;

    }


    .hero {

        min-height: 620px;

    }


    .hero h1 {

        font-size: 52px;

    }


    .statement h2 {

        font-size: 48px;

    }


    .about-heading h2,
    .services-header h2,
    .projects-header h2,
    .contact-heading h2 {

        font-size: 55px;

    }


    .dark-statement h2 {

        font-size: 55px;

    }


    .cta h2 {

        font-size: 55px;

    }


    .whatsapp {

        right: 15px;

        bottom: 15px;

    }
    /* =====================================================
   SCROLL ANIMATION
===================================================== */

.service,
.why-item,
.project,
.about-grid,
.services-header,
.projects-header,
.contact-grid {

    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity .8s ease,
        transform .8s ease;
}


.visible {

    opacity: 1;

    transform: translateY(0);

}

}