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

:root {
    --black: #0b0b0b;
    --black-soft: #111111;
    --white: #f7f7f5;
    --gray: #a3a3a0;
    --gray-dark: #5f5f5c;
    --line: #292929;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', Arial, sans-serif;
    background: var(--black);
    color: var(--white);
    font-weight: 500;
}

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

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


/* HEADER */

.header {
    position: absolute;
    z-index: 20;
    top: 0;
    left: 0;
    right: 0;
    padding: 27px 4vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 21px;
    font-weight: 800;
    letter-spacing: 4px;
}

.logo span {
    font-weight: 500;
}

.nav {
    display: flex;
    gap: 29px;
}

.nav a {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: opacity .25s;
}

.nav a:hover {
    opacity: .55;
}


/* GENERAL */

.eyebrow,
.section-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #a9a9a5;
}

em {
    font-style: normal;
}


/* HERO */

.hero {
    position: relative;
    min-height: 86vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(11,11,11,.97) 0%,
            rgba(11,11,11,.84) 35%,
            rgba(11,11,11,.34) 78%,
            rgba(11,11,11,.18) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 5;
    width: min(690px, 90%);
    margin-left: 4vw;
    padding-top: 35px;
}

.hero h1 {
    font-size: clamp(55px, 7vw, 100px);
    line-height: .9;
    letter-spacing: -4px;
    font-weight: 700;
    margin: 19px 0 23px;
}

.hero h1 em {
    font-weight: 400;
}

.hero-text {
    max-width: 500px;
    color: #d1d1ce;
    font-size: 13px;
    line-height: 1.65;
    font-weight: 500;
}

.hero-meta {
    display: flex;
    gap: 25px;
    margin-top: 20px;
    color: #858581;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.7px;
}

.buttons {
    display: flex;
    gap: 10px;
    margin-top: 28px;
}

.btn {
    min-height: 46px;
    padding: 0 22px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid currentColor;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 9px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
}

.btn-light {
    background: var(--white);
    color: var(--black);
}

.btn-light:hover {
    background: transparent;
    color: white;
}

.btn-outline {
    color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--black);
}

.hero-bottom {
    position: absolute;
    z-index: 5;
    left: 4vw;
    right: 4vw;
    bottom: 22px;
    display: flex;
    justify-content: space-between;
    color: #999;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.5px;
}


/* SERVICES */

.services {
    background: var(--black);
    color: var(--white);
    padding: 85px 4vw 80px;
    display: grid;
    grid-template-columns: 85px 1fr;
    gap: 40px;
    border-top: 1px solid var(--line);
}

.services-content h2 {
    font-size: clamp(42px, 5vw, 67px);
    line-height: .95;
    letter-spacing: -3px;
    font-weight: 700;
}

.services-content h2 em {
    font-weight: 400;
}

.service-grid {
    margin-top: 45px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
}

.service-grid article {
    padding: 22px 22px 25px 0;
    min-height: 135px;
    border-bottom: 1px solid var(--line);
}

.service-grid article:not(:nth-child(3n+1)) {
    padding-left: 22px;
    border-left: 1px solid var(--line);
}

.service-grid span {
    font-size: 8px;
    color: #777;
    font-weight: 700;
}

.service-grid h3 {
    margin: 10px 0 7px;
    font-size: 17px;
    font-weight: 700;
}

.service-grid p {
    color: #92928f;
    font-size: 11px;
    line-height: 1.55;
    max-width: 290px;
}


/* PROJECT */

.project {
    min-height: 60vh;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    border-top: 1px solid var(--line);
}

.project-image {
    overflow: hidden;
}

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

.project-content {
    background: var(--black-soft);
    padding: 7vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-content h2 {
    font-size: clamp(46px, 5.5vw, 75px);
    line-height: .92;
    letter-spacing: -4px;
    font-weight: 700;
    margin: 18px 0 24px;
}

.project-content h2 em {
    font-weight: 400;
}

.project-content > p:not(.eyebrow) {
    max-width: 410px;
    color: #a2a29e;
    font-size: 12px;
    line-height: 1.7;
}

.text-link {
    width: fit-content;
    margin-top: 27px;
    padding-bottom: 7px;
    border-bottom: 1px solid white;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}


/* CONTACTO */

.contact {
    background: var(--black);
    color: var(--white);
    padding: 80px 4vw 70px;
    border-top: 1px solid var(--line);
}

.contact-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 35px;
    border-bottom: 1px solid var(--line);
}

.contact-top > span {
    color: #777;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.contact-inner {
    max-width: 1250px;
    margin: 0 auto;
    padding-top: 48px;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
}

.contact-intro h2 {
    font-size: clamp(48px, 5.8vw, 82px);
    line-height: .9;
    letter-spacing: -4px;
    font-weight: 700;
    margin: 18px 0 22px;
}

.contact-intro h2 em {
    font-weight: 400;
}

.contact-intro > p:not(.eyebrow) {
    max-width: 420px;
    color: #999;
    font-size: 12px;
    line-height: 1.7;
}

.contact-links {
    margin-top: 38px;
}

.contact-links a {
    display: block;
    padding: 16px 0;
    border-top: 1px solid var(--line);
    transition: padding-left .25s;
}

.contact-links a:last-child {
    border-bottom: 1px solid var(--line);
}

.contact-links a:hover {
    padding-left: 8px;
}

.contact-links span {
    display: block;
    color: #686864;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.contact-links strong {
    font-size: 13px;
    font-weight: 600;
}

.contact-links b {
    color: #888;
    font-weight: 400;
    margin-left: 5px;
}

.contact-form {
    padding: 3px 0 0;
}

.form-title {
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

.form-title span {
    display: block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.8px;
}

.form-title small {
    display: block;
    margin-top: 5px;
    color: #686864;
    font-size: 10px;
}

.contact-form label {
    display: block;
    color: #73736f;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 19px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    display: block;
    margin-top: 7px;
    padding: 10px 0;
    border: 0;
    border-bottom: 1px solid #30302f;
    background: transparent;
    outline: none;
    font: inherit;
    font-size: 12px;
    color: var(--white);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #595956;
}

.contact-form select {
    cursor: pointer;
}

.contact-form select option {
    background: #111;
    color: white;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #aaa;
}

.contact-form .btn {
    margin-top: 4px;
}

.whatsapp-form-link {
    display: inline-block;
    margin-top: 18px;
    color: #858581;
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border-bottom: 1px solid #444;
    padding-bottom: 5px;
}

.whatsapp-form-link:hover {
    color: white;
    border-color: white;
}


/* FOOTER */

.footer {
    background: #080808;
    padding: 35px 4vw;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    color: #666;
    border-top: 1px solid #1f1f1f;
}

.footer .logo {
    color: white;
    display: block;
    margin-bottom: 9px;
    font-size: 18px;
}

.footer p {
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 4px;
}


/* MOBILE */

@media (max-width: 800px) {

    .header {
        padding: 22px 20px;
    }

    .logo {
        font-size: 18px;
    }

    .nav {
        gap: 14px;
    }

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

    .hero {
        min-height: 88vh;
    }

    .hero-overlay {
        background: rgba(11,11,11,.72);
    }

    .hero-content {
        margin-left: 20px;
        width: calc(100% - 40px);
    }

    .hero h1 {
        font-size: 56px;
        letter-spacing: -3px;
    }

    .hero-meta {
        flex-direction: column;
        gap: 7px;
    }

    .buttons {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .services {
        padding: 65px 20px;
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .service-grid {
        grid-template-columns: 1fr;
        margin-top: 35px;
    }

    .service-grid article,
    .service-grid article:not(:nth-child(3n+1)) {
        padding: 20px 0;
        border-left: 0;
    }

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

    .project-image {
        height: 45vh;
    }

    .project-content {
        padding: 65px 20px;
    }

    .contact {
        padding: 60px 20px;
    }

    .contact-top {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 45px;
        padding-top: 38px;
    }

    .footer {
        padding: 32px 20px;
        display: block;
    }

    .footer > div:last-child {
        margin-top: 24px;
    }
}
