* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #090909;
    color: #fff;

    font-family: Arial, Helvetica, sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}


/* NAV */

/* =========================================
   HEADER
========================================= */

.navbar {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 90px;

    padding: 0 5vw;

    display: flex;

    align-items: center;

    justify-content: space-between;

    z-index: 1000;

    transition:
        background .4s ease,
        box-shadow .4s ease;

}


/* =========================================
   LOGO
========================================= */

.logo {

    display: inline-flex;

    align-items: center;

    width: 130px;

    line-height: 0;

}


.logo img {

    display: block;

    width: 130px;

    height: auto;

    max-height: 55px;

    object-fit: contain;

    transition:
        opacity .3s ease,
        transform .3s ease;

}


.logo:hover img {

    opacity: .7;

    transform: translateY(-1px);

}


/* =========================================
   NAV
========================================= */

.navbar nav {

    display: flex;

    align-items: center;

    gap: 32px;

}


.navbar nav a {

    position: relative;

    padding: 8px 0;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    color: #aaa;

    transition: color .3s ease;

}


.navbar nav a:hover {

    color: #fff;

}


/* =========================================
   ACTIVE PAGE
========================================= */

.navbar nav a.active {

    color: #fff;

}


.navbar nav a.active::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 100%;

    height: 1px;

    background: #fff;

}


/* =========================================
   LIGHT HEADER
========================================= */

.navbar.light-header {

    background: rgba(242, 242, 240, .95);

    box-shadow:
        0 1px 0 rgba(0,0,0,.08);

    backdrop-filter: blur(12px);

}


.navbar.light-header nav a {

    color: #777;

}


.navbar.light-header nav a:hover {

    color: #111;

}


.navbar.light-header nav a.active {

    color: #111;

}


.navbar.light-header nav a.active::after {

    background: #111;

}

/* HERO */

.hero {
    min-height: 70vh;

    padding: 150px 5vw 100px;

    display: flex;

    align-items: flex-end;

    border-bottom: 1px solid #222;

    background:
        radial-gradient(
            circle at 80% 25%,
            #292929,
            #090909 50%
        );
}

.hero small,
.intro small {
    color: #777;

    font-size: 10px;

    letter-spacing: 4px;
}

.hero h1 {
    margin-top: 30px;

    font-size: clamp(70px, 11vw, 160px);

    line-height: .82;

    letter-spacing: -8px;

    font-weight: 500;
}

.hero h1 span {
    color: #777;
}


/* INTRO */

.intro {
    max-width: 1400px;

    margin: auto;

    padding: 140px 5vw;
}

.intro h2 {
    margin-top: 30px;

    font-size: clamp(55px, 7vw, 100px);

    line-height: .88;

    letter-spacing: -6px;

    font-weight: 500;
}

.intro h2 span {
    display: block;

    color: #777;
}

.intro p {
    max-width: 600px;

    margin-top: 40px;

    color: #999;

    line-height: 1.8;
}


/* CERTIFICATIONS */

.certifications {
    max-width: 1400px;

    margin: auto;

    padding: 0 5vw 150px;
}

.certifications article {
    display: grid;

    grid-template-columns: 70px 1fr;

    gap: 30px;

    padding: 40px 0;

    border-top: 1px solid #222;
}

.icon {
    width: 40px;
    height: 40px;

    border: 1px solid #333;

    display: flex;

    justify-content: center;

    align-items: center;

    color: #aaa;
}

.certifications h2 {
    font-size: 32px;

    font-weight: 400;

    margin-bottom: 12px;
}

.certifications p {
    max-width: 600px;

    color: #777;

    font-size: 13px;

    line-height: 1.8;
}


/* CTA */

.cta {
    padding: 140px 5vw;

    background: #f2f2f0;

    color: #090909;

    text-align: center;
}

.cta h2 {
    font-size: clamp(50px, 7vw, 100px);

    line-height: .88;

    letter-spacing: -6px;

    font-weight: 500;
}

.cta h2 span {
    display: block;

    color: #888;
}

.cta a {
    display: inline-block;

    margin-top: 45px;

    border-bottom: 1px solid #111;

    padding-bottom: 10px;

    font-size: 10px;

    letter-spacing: 2px;
}


/* FOOTER */

/* =========================================
   INKSPIRE FOOTER
========================================= */

.site-footer {

    width: 100%;

    background: #080808;

    color: #fff;

    padding: 40px 5vw 18px;

    border-top: 1px solid #1c1c1c;

}


.footer-inner {

    max-width: 1400px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1fr
        1fr
        1fr;

    align-items: center;

    gap: 60px;

}


/* =========================================
   LOGO
========================================= */

.footer-logo {

    display: inline-block;

    width: 120px;

    line-height: 0;

}


.footer-logo img {

    display: block;

    width: 120px;

    height: auto;

    max-height: 55px;

    object-fit: contain;

    transition: opacity .3s ease;

}


.footer-logo:hover img {

    opacity: .7;

}


/* =========================================
   CENTER
========================================= */

.footer-center {

    text-align: center;

}


.footer-center p {

    max-width: 270px;

    margin: 0 auto;

    font-size: 12px;

    line-height: 1.6;

    color: #777;

}


/* =========================================
   CONTACT
========================================= */

.footer-contact {

    display: flex;

    flex-direction: column;

    align-items: flex-end;

}


.footer-contact > span {

    margin-bottom: 10px;

    font-size: 8px;

    letter-spacing: 3px;

    color: #555;

}


.footer-contact a {

    display: block;

    margin-bottom: 4px;

    font-size: 12px;

    line-height: 1.5;

    color: #aaa;

    text-decoration: none;

    transition: color .3s ease;

}


.footer-contact a:hover {

    color: #fff;

}


.footer-contact p {

    margin: 6px 0 0;

    font-size: 11px;

    line-height: 1.6;

    text-align: right;

    color: #777;

}


/* =========================================
   DIVIDER
========================================= */

.footer-line {

    max-width: 1400px;

    height: 1px;

    margin: 32px auto 15px;

    background: #1c1c1c;

}


/* =========================================
   BOTTOM
========================================= */

.footer-meta {

    max-width: 1400px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

}


.footer-meta span {

    font-size: 7px;

    letter-spacing: 1.5px;

    color: #444;

}


.footer-meta a {

    font-size: 8px;

    letter-spacing: 2px;

    color: #777;

    text-decoration: none;

    transition: color .3s ease;

}


.footer-meta a:hover {

    color: #fff;

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .navbar {

        padding: 0 25px;

    }


    .navbar nav {

        display: none;

    }


    .site-footer {

        padding: 35px 20px 18px;

    }


    .footer-inner {

        grid-template-columns: 1fr;

        gap: 30px;

        align-items: start;

    }


    .footer-center {

        text-align: left;

    }


    .footer-center p {

        margin: 0;

    }


    .footer-contact {

        align-items: flex-start;

    }


    .footer-contact p {

        text-align: left;

    }


    .footer-meta {

        flex-direction: column;

        align-items: flex-start;

        gap: 10px;

    }

}