/* ============================================
   VARIABLES
============================================ */

:root {

    --black: #050505;

    --white: #f5f5f2;

    --muted: #777;

    --dark-muted: #444;

    --line: rgba(255, 255, 255, 0.10);

    --line-light: rgba(255, 255, 255, 0.16);

    --accent: #c7a76a;

    --max-width: 1400px;

}


/* ============================================
   RESET
============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    background: var(--black);

    color: var(--white);

    font-family: "Manrope", sans-serif;

    overflow-x: hidden;

}


a {

    color: inherit;

    text-decoration: none;

}


button,
input,
textarea {

    font: inherit;

}


/* ============================================
   NOISE
============================================ */

.noise {

    position: fixed;

    inset: 0;

    z-index: 9999;

    pointer-events: none;

    opacity: 0.035;

    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");

}


/* ============================================
   LANDING
============================================ */

.landing {

    position: relative;

    min-height: 100vh;

    background: var(--black);

}


/* ============================================
   BACKGROUND
============================================ */

.background {

    position: fixed;

    inset: 0;

    z-index: 0;

    overflow: hidden;

    pointer-events: none;

}


.grid {

    position: absolute;

    inset: 0;

    opacity: 0.025;

    background-image:

        linear-gradient(
            rgba(255,255,255,.5) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,.5) 1px,
            transparent 1px
        );

    background-size: 100px 100px;

}


.orb {

    position: absolute;

    border-radius: 50%;

    filter: blur(100px);

    opacity: .10;

}


.orb-one {

    width: 450px;

    height: 450px;

    background: var(--accent);

    top: -250px;

    right: -150px;

}


.orb-two {

    width: 350px;

    height: 350px;

    background: #ffffff;

    bottom: -250px;

    left: -150px;

}


/* ============================================
   TOP BAR
============================================ */

.topbar {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 20;

    padding: 30px 40px;

}


.topbar-inner {

    width: min(
        var(--max-width),
        100%
    );

    margin: auto;

    display: flex;

    justify-content: space-between;

    align-items: center;

}


.status {

    display: flex;

    align-items: center;

    gap: 9px;

    font-family: "DM Mono", monospace;

    font-size: 9px;

    letter-spacing: .12em;

    text-transform: uppercase;

    color: #777;

}


.status-dot {

    width: 6px;

    height: 6px;

    border-radius: 50%;

    background: #8ba889;

    box-shadow:
        0 0 10px rgba(139,168,137,.7);

}


.year {

    font-family: "DM Mono", monospace;

    font-size: 9px;

    color: #444;

}


/* ============================================
   HERO
============================================ */

.hero {

    position: relative;

    z-index: 2;

    min-height: 100svh;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 120px 30px 100px;

}


.hero-inner {

    width: min(
        100%,
        1100px
    );

    text-align: center;

    display: flex;

    flex-direction: column;

    align-items: center;

}


/* ============================================
   LOGO
============================================ */

.logo-container {

    width: min(
        390px,
        60vw
    );

    margin-bottom: 55px;

}


.logo {

    width: 100%;

    height: auto;

    display: block;

}


.logo-mobile {

    display: none;

}


/* ============================================
   EYEBROW
============================================ */

.eyebrow {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    margin-bottom: 30px;

    font-family: "DM Mono", monospace;

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: .18em;

    color: var(--accent);

}


.eyebrow-line {

    width: 30px;

    height: 1px;

    background: var(--accent);

    opacity: .6;

}


/* ============================================
   HERO COPY
============================================ */

.hero-copy {

    animation:
        heroReveal 1.2s
        cubic-bezier(.16,1,.3,1)
        both;

}


.hero h1 {

    font-size:
        clamp(
            65px,
            10vw,
            145px
        );

    line-height: .82;

    letter-spacing: -.09em;

    font-weight: 500;

}


.hero h1 .line {

    display: block;

}


.hero h1 .accent {

    color: #555;

    font-style: italic;

}


/* ============================================
   SUBHEADING
============================================ */

.subheading {

    margin-top: 45px;

    color: #777;

    font-size:
        clamp(
            13px,
            1.5vw,
            17px
        );

    line-height: 1.7;

}


.subheading strong {

    color: var(--white);

    font-weight: 500;

}


/* ============================================
   SERVICES
============================================ */

.services {

    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 10px;

    max-width: 850px;

    margin-top: 45px;

    color: #777;

    font-family: "DM Mono", monospace;

    font-size: 9px;

    line-height: 1.8;

    text-transform: uppercase;

    letter-spacing: .10em;

}


.separator {

    color: var(--accent);

    opacity: .6;

}


/* ============================================
   CTA
============================================ */

.cta-wrapper {

    display: flex;

    flex-direction: column;

    align-items: center;

    margin-top: 55px;

}


.cta-question {

    color: #555;

    font-family: "DM Mono", monospace;

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: .14em;

    margin-bottom: 14px;

}


.cta {

    display: flex;

    align-items: center;

    gap: 25px;

    padding-bottom: 10px;

    border-bottom: 1px solid var(--accent);

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: .13em;

    transition: .3s ease;

}


.cta-arrow {

    color: var(--accent);

    font-size: 18px;

    transition: transform .3s ease;

}


.cta:hover {

    color: var(--accent);

}


.cta:hover .cta-arrow {

    transform: translate(5px, -5px);

}


/* ============================================
   SCROLL
============================================ */

.scroll-indicator {

    position: absolute;

    bottom: 30px;

    right: 40px;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 10px;

    color: #444;

    font-family: "DM Mono", monospace;

    font-size: 8px;

    letter-spacing: .15em;

}


.scroll-line {

    width: 1px;

    height: 45px;

    background:
        linear-gradient(
            to bottom,
            #555,
            transparent
        );

    animation: scrollPulse 2s infinite;

}


/* ============================================
   CONTACT
============================================ */

.contact {

    position: relative;

    z-index: 2;

    border-top: 1px solid var(--line);

    background: #070707;

}


.contact-inner {

    width: min(
        var(--max-width),
        calc(100% - 80px)
    );

    margin: auto;

    padding: 150px 0;

}


.contact-heading {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 60px;

}


.contact-number {

    color: var(--accent);

    font-family: "DM Mono", monospace;

    font-size: 9px;

}


.contact-label {

    color: #555;

    font-family: "DM Mono", monospace;

    font-size: 9px;

    letter-spacing: .15em;

    text-transform: uppercase;

}


.contact-main {

    max-width: 1100px;

}


.contact-main h2 {

    font-size:
        clamp(
            55px,
            9vw,
            130px
        );

    line-height: .85;

    letter-spacing: -.09em;

    font-weight: 400;

}


.contact-main h2 span {

    color: #555;

}


.contact-main > p {

    max-width: 450px;

    margin-top: 45px;

    color: #777;

    font-size: 14px;

    line-height: 1.8;

}


/* ============================================
   CONTACT LINKS
============================================ */

.contact-links {

    max-width: 850px;

    margin-top: 75px;

    border-top: 1px solid var(--line);

}


.contact-link {

    display: grid;

    grid-template-columns:
        120px
        1fr
        30px;

    align-items: center;

    gap: 30px;

    padding: 25px 0;

    border-bottom: 1px solid var(--line);

    transition: .3s ease;

}


.contact-link:hover {

    padding-left: 15px;

}


.link-label {

    color: #555;

    font-family: "DM Mono", monospace;

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: .13em;

}


.link-value {

    font-size: 14px;

}


.link-arrow {

    color: var(--accent);

    font-size: 18px;

    transition: .3s;

}


.contact-link:hover .link-arrow {

    transform:
        translate(
            5px,
            -5px
        );

}


/* ============================================
   FOOTER
============================================ */

footer {

    position: relative;

    z-index: 2;

    border-top: 1px solid var(--line);

}


.footer-inner {

    width: min(
        var(--max-width),
        calc(100% - 80px)
    );

    margin: auto;

    padding: 25px 0;

    display: flex;

    justify-content: space-between;

    color: #444;

    font-family: "DM Mono", monospace;

    font-size: 8px;

    letter-spacing: .08em;

    text-transform: uppercase;

}


/* ============================================
   ANIMATIONS
============================================ */

@keyframes heroReveal {

    from {

        opacity: 0;

        transform:
            translateY(35px);

        filter: blur(10px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

        filter: blur(0);

    }

}


@keyframes scrollPulse {

    0%,
    100% {

        opacity: .3;

        transform:
            scaleY(.7);

        transform-origin: top;

    }

    50% {

        opacity: 1;

        transform:
            scaleY(1);

    }

}


/* ============================================
   TABLET
============================================ */

@media (max-width: 900px) {

    .topbar {

        padding: 25px 25px;

    }


    .hero {

        padding-left: 20px;

        padding-right: 20px;

    }


    .logo-container {

        width: min(
            330px,
            65vw
        );

    }


    .contact-inner,
    .footer-inner {

        width:
            calc(100% - 50px);

    }

}


/* ============================================
   MOBILE
============================================ */

@media (max-width: 600px) {


    .topbar {

        padding:
            20px;

    }


    .year {

        display: none;

    }


    .hero {

        min-height: 100svh;

        padding:
            90px
            20px
            70px;

    }


    .logo-container {

        width:
            min(
                250px,
                65vw
            );

        margin-bottom: 45px;

    }


    .logo-desktop {

        display: none;

    }


    .logo-mobile {

        display: block;

    }


    .eyebrow {

        font-size: 8px;

        gap: 9px;

    }


    .eyebrow-line {

        width: 18px;

    }


    .hero h1 {

        font-size:
            clamp(
                58px,
                18vw,
                100px
            );

    }


    .subheading {

        margin-top: 30px;

        font-size: 12px;

    }


    .services {

        max-width: 340px;

        margin-top: 35px;

        gap: 7px;

        font-size: 8px;

    }


    .separator {

        display: none;

    }


    .services span {

        padding:
            5px
            9px;

        border:
            1px solid
            rgba(255,255,255,.08);

    }


    .cta-wrapper {

        margin-top: 40px;

    }


    .scroll-indicator {

        right: 20px;

        bottom: 20px;

    }


    .contact-inner {

        width:
            calc(100% - 40px);

        padding:
            100px 0;

    }


    .contact-heading {

        margin-bottom: 45px;

    }


    .contact-main h2 {

        font-size:
            clamp(
                52px,
                16vw,
                90px
            );

    }


    .contact-main > p {

        font-size: 12px;

        margin-top: 35px;

    }


    .contact-links {

        margin-top: 55px;

    }


    .contact-link {

        grid-template-columns:
            75px
            1fr
            20px;

        gap: 10px;

        padding:
            22px 0;

    }


    .link-value {

        font-size: 12px;

    }


    .footer-inner {

        width:
            calc(100% - 40px);

        display: flex;

        flex-direction: column;

        gap: 10px;

        padding:
            22px 0;

    }

}


/* ============================================
   REDUCED MOTION
============================================ */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        animation-duration: .01ms !important;

        animation-iteration-count: 1 !important;

        scroll-behavior: auto !important;

        transition-duration: .01ms !important;

    }

}

.seo-heading {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}