/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
}

body {
    width: 100%;
    overflow-x: hidden;

    background: #080808;
    color: #fff;

    font-family:
        Arial,
        Helvetica,
        sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}



/* =========================================
   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;

    background: transparent;

    transition:
        background .4s ease,
        box-shadow .4s ease;

}


/* =========================================
   LOGO
========================================= */

.logo {

    display: inline-flex;

    align-items: center;

    width: 110px;

    line-height: 0;

}


.logo img {

    display: block;

    width: 110px;

    height: auto;

    max-height: 48px;

    object-fit: contain;

    transition:
        opacity .3s ease,
        transform .3s ease;

}


/*
   IMPORTANT:
   DO NOT FILTER THE LOGO
*/

.logo:hover img {

    opacity: .7;

    transform:
        translateY(-1px);

}



/* =========================================
   NAVIGATION
========================================= */

.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;

}


.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
   ONLY TEXT CHANGES
========================================= */

.navbar.light-header {

    background:
        rgba(242, 242, 240, .96);

    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;

}


/*
   NOTICE:
   There is NO:

   filter: brightness(0);

   here.

   Therefore the logo keeps
   its original appearance.
*/



/* =========================================
   HERO
========================================= */

.packages-hero {

    position: relative;

    min-height: 90vh;

    padding:
        170px 5vw
        110px;

    display: flex;

    align-items: flex-end;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 75% 25%,
            #292929,
            #080808 55%
        );

}


.hero-content {

    position: relative;

    z-index: 2;

    max-width: 1000px;

}


.hero-content small {

    display: block;

    margin-bottom: 35px;

    color: #777;

    font-size: 10px;

    letter-spacing: 4px;

}


.hero-content h1 {

    font-size:
        clamp(70px, 10vw, 150px);

    line-height: .82;

    letter-spacing: -8px;

    font-weight: 500;

}


.hero-content h1 span {

    color: #777;

}


.hero-content p {

    max-width: 430px;

    margin-top: 45px;

    color: #888;

    font-size: 13px;

    line-height: 1.8;

}


.hero-number {

    position: absolute;

    right: 3vw;

    bottom: -5vw;

    font-size:
        clamp(300px, 40vw, 650px);

    line-height: .7;

    font-weight: 700;

    letter-spacing: -35px;

    color: #151515;

    user-select: none;

}



/* =========================================
   INTRO
========================================= */

.packages-intro {

    display: grid;

    grid-template-columns:
        30% 70%;

    padding:
        130px 7vw;

    background: #f3f3ef;

    color: #090909;

}


.intro-label small {

    color: #888;

    font-size: 9px;

    letter-spacing: 3px;

}


.intro-content {

    max-width: 850px;

}


.intro-content h2 {

    font-size:
        clamp(50px, 7vw, 95px);

    line-height: .88;

    letter-spacing: -6px;

    font-weight: 500;

}


.intro-content h2 span {

    display: block;

    color: #888;

}


.intro-content p {

    max-width: 600px;

    margin-top: 30px;

    color: #555;

    font-size: 14px;

    line-height: 1.8;

}



/* =========================================
   PACKAGE LIST
========================================= */

.package-list {

    background: #f3f3ef;

    color: #090909;

    padding:
        0 5vw 140px;

}


.package-card {

    display: grid;

    grid-template-columns:
        52% 48%;

    min-height: 650px;

    border-top:
        1px solid #d6d6d1;

}


.package-card.reverse {

    grid-template-columns:
        48% 52%;

}


.package-card.reverse
.package-image {

    order: 2;

}


.package-card.reverse
.package-info {

    order: 1;

}



/* =========================================
   PACKAGE IMAGE
========================================= */

.package-image {

    position: relative;

    min-height: 600px;

    overflow: hidden;

    background: #ddd;

}


.package-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .8s
        cubic-bezier(.16,1,.3,1);

}


.package-card:hover
.package-image img {

    transform:
        scale(1.04);

}


.package-number {

    position: absolute;

    top: 30px;
    left: 30px;

    font-size: 10px;

    letter-spacing: 2px;

    color: #fff;

    background: rgba(0,0,0,.55);

    padding: 10px 12px;

    backdrop-filter:
        blur(8px);

}



/* =========================================
   PACKAGE INFO
========================================= */

.package-info {

    padding:
        75px 7vw;

    display: flex;

    flex-direction: column;

    justify-content: center;

}


.package-top {

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    gap: 30px;

}


.package-top small {

    display: block;

    margin-bottom: 18px;

    color: #888;

    font-size: 9px;

    letter-spacing: 3px;

}


.package-top h2 {

    font-size:
        clamp(38px, 4vw, 65px);

    line-height: .9;

    letter-spacing: -3px;

    font-weight: 500;

}


.package-tag {

    padding:
        8px 10px;

    border:
        1px solid #ccc;

    color: #777;

    font-size: 8px;

    letter-spacing: 1.5px;

    white-space: nowrap;

}


.package-description {

    max-width: 500px;

    margin-top: 30px;

    color: #555;

    font-size: 14px;

    line-height: 1.8;

}



/* =========================================
   INCLUDED
========================================= */

.included {

    margin-top: 45px;

}


.included > small {

    color: #999;

    font-size: 9px;

    letter-spacing: 3px;

}


.product-list {

    margin-top: 18px;

    border-top:
        1px solid #d5d5d0;

}


.product-list div {

    display: flex;

    align-items: center;

    gap: 20px;

    padding: 15px 0;

    border-bottom:
        1px solid #d5d5d0;

    font-size: 12px;

}


.product-list span {

    color: #aaa;

    font-size: 9px;

    letter-spacing: 1px;

}



/* =========================================
   PACKAGE LINK
========================================= */

.package-link {

    width: fit-content;

    margin-top: 40px;

    padding-bottom: 9px;

    border-bottom:
        1px solid #111;

    font-size: 9px;

    letter-spacing: 2px;

    transition:
        letter-spacing .3s ease;

}


.package-link span {

    margin-left: 15px;

}


.package-link:hover {

    letter-spacing: 3px;

}



/* =========================================
   PRODUCTS
========================================= */

.products-section {

    padding:
        140px 5vw;

    background: #fff;

    color: #090909;

}


.products-header {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: end;

    margin-bottom: 70px;

}


.products-header small {

    color: #888;

    font-size: 9px;

    letter-spacing: 3px;

}


.products-header h2 {

    margin-top: 25px;

    font-size:
        clamp(55px, 7vw, 100px);

    line-height: .85;

    letter-spacing: -6px;

    font-weight: 500;

}


.products-header h2 span {

    color: #888;

}


.products-header > p {

    max-width: 400px;

    justify-self: end;

    color: #777;

    font-size: 13px;

    line-height: 1.8;

}



/* =========================================
   PRODUCT GRID
========================================= */

.product-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 1px;

    background: #d8d8d3;

    border:
        1px solid #d8d8d3;

}


.product-item {

    background: #fff;

}


.product-image {

    height: 300px;

    overflow: hidden;

    background: #eee;

}


.product-image img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .7s
        cubic-bezier(.16,1,.3,1);

}


.product-item:hover
.product-image img {

    transform:
        scale(1.05);

}


.product-meta {

    padding: 25px;

}


.product-meta > span {

    color: #aaa;

    font-size: 9px;

    letter-spacing: 2px;

}


.product-meta h3 {

    margin-top: 35px;

    font-size: 18px;

    font-weight: 500;

    letter-spacing: 1px;

}


.product-meta p {

    max-width: 270px;

    margin-top: 10px;

    color: #777;

    font-size: 12px;

    line-height: 1.7;

}



/* =========================================
   PROCESS
========================================= */

.process {

    display: grid;

    grid-template-columns:
        40% 60%;

    padding:
        140px 7vw;

    background: #080808;

    color: #fff;

}


.process-title small {

    color: #666;

    font-size: 9px;

    letter-spacing: 3px;

}


.process-title h2 {

    margin-top: 25px;

    font-size:
        clamp(55px, 6vw, 90px);

    line-height: .85;

    letter-spacing: -5px;

    font-weight: 500;

}


.process-title h2 span {

    color: #777;

}


.process-list {

    border-top:
        1px solid #222;

}


.process-step {

    display: grid;

    grid-template-columns:
        50px 1fr;

    gap: 25px;

    padding: 30px 0;

    border-bottom:
        1px solid #222;

}


.process-step > span {

    color: #555;

    font-size: 9px;

    letter-spacing: 2px;

}


.process-step h3 {

    font-size: 17px;

    font-weight: 400;

}


.process-step p {

    max-width: 430px;

    margin-top: 10px;

    color: #777;

    font-size: 12px;

    line-height: 1.7;

}



/* =========================================
   CTA
========================================= */

.packages-cta {

    padding:
        150px 5vw;

    text-align: center;

    background: #f2f2ef;

    color: #090909;

}


.packages-cta small {

    color: #888;

    font-size: 9px;

    letter-spacing: 3px;

}


.packages-cta h2 {

    margin-top: 30px;

    font-size:
        clamp(55px, 8vw, 115px);

    line-height: .85;

    letter-spacing: -7px;

    font-weight: 500;

}


.packages-cta h2 span {

    color: #888;

}


.packages-cta p {

    max-width: 450px;

    margin: 35px auto 0;

    color: #666;

    font-size: 13px;

    line-height: 1.8;

}


.packages-cta a {

    display: inline-block;

    margin-top: 40px;

    padding-bottom: 10px;

    border-bottom:
        1px solid #111;

    font-size: 9px;

    letter-spacing: 2px;

    transition:
        letter-spacing .3s ease;

}


.packages-cta a:hover {

    letter-spacing: 3px;

}



/* =========================================
   FOOTER
========================================= */

.site-footer {

    width: 100%;

    padding:
        40px 5vw 18px;

    background: #080808;

    color: #fff;

    border-top:
        1px solid #1c1c1c;

}


.footer-inner {

    max-width: 1400px;

    margin: auto;

    display: grid;

    grid-template-columns:
        1fr 1fr 1fr;

    align-items: center;

    gap: 60px;

}


/* =========================================
   FOOTER LOGO — COMPACT
========================================= */

.footer-logo {

    display: 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;

}


.footer-center {

    text-align: center;

}


.footer-center p {

    max-width: 270px;

    margin: auto;

    color: #777;

    font-size: 12px;

    line-height: 1.6;

}


.footer-contact {

    display: flex;

    flex-direction: column;

    align-items: flex-end;

}


.footer-contact span {

    margin-bottom: 10px;

    color: #555;

    font-size: 8px;

    letter-spacing: 3px;

}


.footer-contact a {

    color: #aaa;

    font-size: 11px;

}


.footer-contact p {

    margin-top: 8px;

    color: #777;

    font-size: 11px;

    line-height: 1.6;

    text-align: right;

}


.footer-line {

    max-width: 1400px;

    height: 1px;

    margin:
        32px auto 15px;

    background: #1c1c1c;

}


.footer-meta {

    max-width: 1400px;

    margin: auto;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

}


.footer-meta span {

    color: #444;

    font-size: 7px;

    letter-spacing: 1.5px;

}


.footer-meta a {

    color: #777;

    font-size: 8px;

    letter-spacing: 2px;

}



/* =========================================
   MOBILE
========================================= */

@media (max-width: 800px) {


    .navbar {

        height: 75px;

        padding: 0 25px;

    }


    .logo,
    .logo img {

        width: 95px;

    }


    .navbar nav {

        display: none;

    }


    /* HERO */

    .packages-hero {

        min-height: 80vh;

        padding:
            140px 25px 80px;

    }


    .hero-content h1 {

        font-size: 68px;

        letter-spacing: -5px;

    }


    .hero-content p {

        max-width: 300px;

    }


    .hero-number {

        right: -20px;

        bottom: 20px;

        font-size: 280px;

    }


    /* INTRO */

    .packages-intro {

        grid-template-columns: 1fr;

        padding:
            80px 25px;

    }


    .intro-content {

        margin-top: 30px;

    }


    .intro-content h2 {

        font-size: 58px;

        letter-spacing: -4px;

    }


    /* PACKAGES */

    .package-list {

        padding:
            0 25px 90px;

    }


    .package-card,
    .package-card.reverse {

        display: flex;

        flex-direction: column;

    }


    .package-card.reverse
    .package-image {

        order: 0;

    }


    .package-card.reverse
    .package-info {

        order: 1;

    }


    .package-image {

        min-height: 350px;

    }


    .package-info {

        padding:
            55px 10px 70px;

    }


    .package-top h2 {

        font-size: 42px;

    }


    /* PRODUCTS */

    .products-section {

        padding:
            90px 25px;

    }


    .products-header {

        grid-template-columns: 1fr;

    }


    .products-header h2 {

        font-size: 60px;

        letter-spacing: -4px;

    }


    .products-header > p {

        justify-self: start;

        margin-top: 30px;

    }


    .product-grid {

        grid-template-columns: 1fr;

    }


    /* PROCESS */

    .process {

        grid-template-columns: 1fr;

        padding:
            90px 25px;

    }


    .process-list {

        margin-top: 60px;

    }


    /* CTA */

    .packages-cta {

        padding:
            100px 25px;

    }


    .packages-cta h2 {

        font-size: 60px;

        letter-spacing: -4px;

    }


 /* =========================================
   INKSPIRE — COMPACT FOOTER
========================================= */

.site-footer {
    width: 100%;
    background: #080808;
    color: #fff;

    padding: 32px 5vw 16px;

    border-top: 1px solid #1c1c1c;
}


/* =========================================
   FOOTER INNER
========================================= */

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1fr
        1fr
        1fr;

    align-items: center;

    gap: 40px;
}


/* =========================================
   LOGO
========================================= */

.footer-brand {
    display: flex;
    align-items: center;
}

.footer-logo {
    display: block;

    width: 105px;

    line-height: 0;
}

.footer-logo img {
    display: block;

    width: 105px;
    height: auto;

    max-height: 45px;

    object-fit: contain;

    transition: opacity .3s ease;
}

.footer-logo:hover img {
    opacity: .7;
}


/* =========================================
   CENTER STATEMENT
========================================= */

.footer-center {
    text-align: center;
}

.footer-center p {
    max-width: 240px;

    margin: 0 auto;

    font-size: 11px;
    line-height: 1.5;

    color: #777;
}


/* =========================================
   CONTACT
========================================= */

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-contact > span {
    margin-bottom: 7px;

    font-size: 7px;
    letter-spacing: 2.5px;

    color: #555;
}


/* CONTACT LINKS */

.footer-contact a {
    display: block;

    margin-bottom: 2px;

    font-size: 11px;
    line-height: 1.4;

    color: #aaa;

    transition: color .3s ease;
}

.footer-contact a:hover {
    color: #fff;
}


/* ADDRESS */

.footer-contact p {
    margin: 4px 0 0;

    font-size: 9px;
    line-height: 1.5;

    text-align: right;

    color: #666;
}


/* =========================================
   DIVIDER
========================================= */

.footer-line {
    max-width: 1400px;

    height: 1px;

    margin: 22px auto 12px;

    background: #1c1c1c;
}


/* =========================================
   BOTTOM META
========================================= */

.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.3px;

    color: #444;
}

.footer-meta a {
    font-size: 7px;

    letter-spacing: 1.8px;

    color: #666;

    transition: color .3s ease;
}

.footer-meta a:hover {
    color: #fff;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .site-footer {
        padding: 30px 30px 15px;
    }

    .footer-inner {
        grid-template-columns:
            1fr
            1fr;

        gap: 28px;
    }

    .footer-center {
        text-align: left;
    }

    .footer-center p {
        margin: 0;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .site-footer {
        padding: 30px 20px 15px;
    }

    .footer-inner {
        grid-template-columns: 1fr;

        gap: 22px;

        align-items: start;
    }

    .footer-brand {
        align-items: flex-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: 8px;
    }

}
}