@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');


/* ==========================================
   ROOT
========================================== */

:root {
    --primary: #900001;
    --primary-dark: #6e0001;

    --black: #080808;
    --white: #ffffff;

    --text: #171717;
    --muted: #6d6d6d;

    --light: #f7f7f7;
    --border: #e9e9e9;
}


/* ==========================================
   RESET
========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: "DM Sans", sans-serif;
    background: var(--white);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}


body.menu-open {
    overflow: hidden;
}


a {
    text-decoration: none;
    color: inherit;
}


img {
    display: block;
    max-width: 100%;
}


button,
input,
textarea,
select {
    font: inherit;
}


/* ==========================================
   GLOBAL CONTAINER
========================================== */

.container {
    width: 92%;
    max-width: 1360px;
    margin-left: auto;
    margin-right: auto;
}


/* ==========================================
   HEADER
========================================== */

.site-header {
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border);

    position: sticky;
    top: 0;

    z-index: 9999;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.035);
}


.nav-container {
    min-height: 84px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* ==========================================
   LOGO
========================================== */

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}


.logo img {
    height: 45px;
    width: auto;

    max-width: 190px;

    object-fit: contain;
}


/* ==========================================
   DESKTOP NAVIGATION
========================================== */

.main-nav {
    display: flex;
    align-items: center;

    gap: 32px;
}


.main-nav a {
    font-size: 15px;
    font-weight: 500;

    color: #202020;

    position: relative;

    transition:
        color 0.25s ease;
}


.main-nav a:not(.nav-cta)::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: var(--primary);

    transition: width 0.25s ease;
}


.main-nav a:not(.nav-cta):hover {
    color: var(--primary);
}


.main-nav a:not(.nav-cta):hover::after {
    width: 100%;
}


/* ==========================================
   NAV CTA
========================================== */

.nav-cta {
    background: var(--primary);

    color: var(--white) !important;

    padding: 13px 22px;

    border-radius: 7px;

    font-weight: 600 !important;

    box-shadow:
        0 8px 22px rgba(144, 0, 1, 0.18);

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.nav-cta:hover {
    background: var(--primary-dark);

    transform: translateY(-2px);

    box-shadow:
        0 12px 28px rgba(144, 0, 1, 0.24);
}


/* ==========================================
   HAMBURGER BUTTON
========================================== */

.menu-toggle {
    display: none;

    width: 46px;
    height: 46px;

    border: 1px solid #e8e8e8;

    background: #ffffff;

    border-radius: 50%;

    cursor: pointer;

    padding: 10px;

    position: relative;

    z-index: 10002;

    box-shadow:
        0 5px 16px rgba(0, 0, 0, 0.05);

    transition:
        border-color 0.25s ease,
        background 0.25s ease;
}


.menu-toggle:hover {
    border-color: #d7d7d7;
}


.menu-toggle span {
    display: block;

    width: 23px;
    height: 2px;

    background: var(--black);

    margin: 5px auto;

    border-radius: 20px;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease,
        background 0.3s ease;
}


/* Hamburger to X */

.menu-toggle.active {
    background: var(--primary);
    border-color: var(--primary);
}


.menu-toggle.active span {
    background: #ffffff;
}


.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}


.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}


.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* ==========================================
   HERO
========================================== */

.hero {
    padding: 110px 0;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #fafafa 70%,
            #f7f3f3 100%
        );
}


.hero h1 {
    font-family: "Bricolage Grotesque", sans-serif;

    font-size: clamp(48px, 5.7vw, 82px);

    font-weight: 650;

    line-height: 1.04;

    letter-spacing: -2.5px;

    max-width: 1100px;

    color: var(--black);

    margin-bottom: 26px;
}


.hero p {
    max-width: 780px;

    color: var(--muted);

    font-size: 19px;

    line-height: 1.7;
}


/* ==========================================
   ABOUT
========================================== */

.about-section {
    padding: 105px 0;

    background: var(--white);
}


.about-section h2 {
    font-family: "Bricolage Grotesque", sans-serif;

    font-size: clamp(36px, 4vw, 58px);

    line-height: 1.1;

    letter-spacing: -1.5px;

    color: var(--black);

    margin-bottom: 20px;
}


.about-section p {
    max-width: 780px;

    color: var(--muted);

    font-size: 18px;

    line-height: 1.75;
}


/* ==========================================
   SERVICES
========================================== */

.services-section {
    min-height: 260px;

    padding: 100px 0;

    background: var(--light);
}


/* ==========================================
   FOOTER
========================================== */

.site-footer {
    background: var(--black);

    color: var(--white);

    padding-top: 82px;
}


.footer-container {
    display: grid;

    grid-template-columns:
        1.7fr
        1fr
        1fr;

    gap: 80px;

    padding-bottom: 70px;
}


.footer-brand h3 {
    font-family: "Bricolage Grotesque", sans-serif;

    font-size: 27px;

    margin-bottom: 18px;
}


.footer-brand p {
    max-width: 440px;

    font-size: 16px;

    line-height: 1.8;

    color: #9d9d9d;
}


.footer-links h4 {
    font-size: 13px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1.3px;

    color: #ffffff;

    margin-bottom: 24px;
}


.footer-links a {
    display: block;

    width: fit-content;

    margin-bottom: 14px;

    color: #a5a5a5;

    font-size: 15px;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}


.footer-links a:hover {
    color: #ffffff;

    transform: translateX(4px);
}


.footer-bottom {
    border-top: 1px solid #202020;

    text-align: center;

    padding: 23px 20px;
}


.footer-bottom p {
    color: #777777;

    font-size: 14px;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 1100px) {

    .main-nav {
        gap: 22px;
    }


    .main-nav a {
        font-size: 14px;
    }


    .nav-cta {
        padding: 12px 18px;
    }


    .footer-container {
        gap: 50px;
    }

}


/* ==========================================
   MOBILE NAVIGATION
========================================== */

@media (max-width: 900px) {

    .site-header {
        background: #ffffff;
    }


    .nav-container {
        min-height: 72px;
    }


    .logo img {
        height: 45px;

        width: auto;

        max-width: 165px;
    }


    .menu-toggle {
        display: block;
    }


    .main-nav {
        position: fixed;

        top: 72px;

        right: 0;

        bottom: 0;

        width: min(88%, 390px);

        height: calc(100dvh - 72px);

        background: #ffffff;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        justify-content: flex-start;

        gap: 0;

        padding:
            25px
            25px
            40px;

        overflow-y: auto;

        z-index: 9998;

        box-shadow:
            -16px 0 40px rgba(0, 0, 0, 0.10);

        opacity: 0;

        visibility: hidden;

        pointer-events: none;

        transform: translateX(105%);

        transition:
            transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
            opacity 0.25s ease,
            visibility 0.25s ease;
    }


    .main-nav.active {
        opacity: 1;

        visibility: visible;

        pointer-events: auto;

        transform: translateX(0);
    }


    .main-nav a {
        display: flex;

        align-items: center;

        width: 100%;

        min-height: 59px;

        padding:
            14px
            2px;

        border-bottom:
            1px solid #eeeeee;

        font-size: 17px;

        font-weight: 500;

        color: #181818;
    }


    .main-nav a:not(.nav-cta)::after {
        display: none;
    }


    .main-nav a:not(.nav-cta):hover {
        color: var(--primary);
    }


    .nav-cta {
        display: flex !important;

        align-items: center;

        justify-content: center;

        min-height: 54px;

        margin-top: 24px;

        padding: 14px 20px !important;

        border-bottom: none !important;

        border-radius: 7px;

        color: #ffffff !important;
    }


    .hero {
        padding: 78px 0;
    }


    .hero h1 {
        letter-spacing: -1.8px;
    }


    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 600px) {

    .container {
        width: 90%;
    }


    .nav-container {
        min-height: 68px;
    }


    .logo img {
        height: 45px;

        width: auto;

        max-width: 150px;
    }


    .menu-toggle {
        width: 42px;

        height: 42px;
    }


    .main-nav {
        top: 68px;

        width: 100%;

        height: calc(100dvh - 68px);

        padding:
            20px
            5%
            35px;

        box-shadow: none;
    }


    .main-nav a {
        min-height: 57px;

        font-size: 16px;
    }


    .hero {
        padding: 58px 0 62px;
    }


    .hero h1 {
        font-size: 42px;

        line-height: 1.06;

        letter-spacing: -1.4px;

        margin-bottom: 18px;
    }


    .hero p {
        font-size: 16px;
    }


    .about-section {
        padding: 64px 0;
    }


    .about-section h2 {
        font-size: 34px;
    }


    .about-section p {
        font-size: 16px;
    }


    .services-section {
        padding: 65px 0;
    }


    .site-footer {
        padding-top: 60px;
    }


    .footer-container {
        grid-template-columns: 1fr;

        gap: 42px;

        padding-bottom: 48px;
    }

}