
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


:root {

    --black: #080808;
    --black-soft: #0e0e0e;
    --black-light: #151515;

    --white: #f2f0ea;
    --white-soft: #d8d6d0;

    --grey: #85837d;
    --grey-dark: #55534e;

    --line: rgba(255,255,255,0.13);
    --line-soft: rgba(255,255,255,0.07);

    --serif: "Playfair Display", serif;
    --sans: "DM Sans", sans-serif;
    --display: "Manrope", sans-serif;

}


html {
    scroll-behavior: smooth;
}


body {

    background: var(--black);

    color: var(--white);

    font-family: var(--sans);

    overflow-x: hidden;

}


body.menu-open {
    overflow: hidden;
}


a {
    color: inherit;
    text-decoration: none;
}


button {
    font-family: inherit;
}


::selection {
    background: var(--white);
    color: var(--black);
}



::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: #444;
}



.page-loader {

    position: fixed;

    inset: 0;

    z-index: 99999;

    background: var(--black);

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 35px;

    transition:
        opacity .8s ease,
        visibility .8s ease;

}


.page-loader.loaded {

    opacity: 0;

    visibility: hidden;

}


.loader-logo {

    display: flex;

    gap: 4px;

    font-family: var(--display);

    font-size: 25px;

    font-weight: 700;

    letter-spacing: -3px;

}


.loader-logo span:nth-child(2) {
    color: #777;
}


.loader-line {

    width: 180px;

    height: 1px;

    background: #292929;

    overflow: hidden;

}


.loader-line span {

    display: block;

    width: 0;

    height: 100%;

    background: var(--white);

    animation:
        loaderLine 1.4s
        cubic-bezier(.77,0,.18,1)
        forwards;

}


@keyframes loaderLine {

    to {
        width: 100%;
    }

}


.custom-cursor {

    position: fixed;

    width: 42px;

    height: 42px;

    border: 1px solid rgba(255,255,255,.35);

    border-radius: 50%;

    pointer-events: none;

    z-index: 99998;

    transform:
        translate(-50%,-50%);

    transition:
        width .35s,
        height .35s,
        background .35s;

}


.custom-cursor.hover {

    width: 75px;

    height: 75px;

    background: rgba(255,255,255,.06);

    border-color: rgba(255,255,255,.7);

}


.cursor-dot {

    position: fixed;

    width: 4px;

    height: 4px;

    border-radius: 50%;

    background: white;

    pointer-events: none;

    z-index: 99999;

    transform:
        translate(-50%,-50%);

}


.site-header {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 90px;

    padding:
        0 5vw;

    display: flex;

    align-items: center;

    justify-content: space-between;

    z-index: 5000;

    border-bottom:
        1px solid
        rgba(255,255,255,.08);

    background:
        rgba(8,8,8,.72);

    backdrop-filter:
        blur(20px);

    transition:
        height .4s,
        background .4s;

}


.site-header.scrolled {

    height: 72px;

    background:
        rgba(8,8,8,.94);

}



.site-logo {

    display: flex;

    align-items: center;

    gap: 15px;

}


.logo-symbol {

    width: 42px;

    height: 42px;

}


.logo-symbol path {

    fill: none;

    stroke: var(--white);

    stroke-width: 1.8;

    stroke-linecap: square;

    stroke-linejoin: miter;

}


.logo-symbol .logo-dot {

    fill: var(--white);

}


.logo-wordmark {

    font-family: var(--display);

    font-size: 11px;

    letter-spacing: 3px;

    font-weight: 600;

}


.logo-wordmark span {

    color: #777;

}


.desktop-nav {

    display: flex;

    align-items: center;

    gap: 38px;

}


.desktop-nav a {

    display: flex;

    gap: 8px;

    align-items: center;

    color: #777;

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: 2px;

    transition: color .3s;

}


.desktop-nav a span {

    color: #444;

    font-size: 7px;

}


.desktop-nav a:hover,
.desktop-nav a.active {

    color: white;

}


.header-link {

    display: flex;

    align-items: center;

    gap: 15px;

    color: #999;

    font-size: 9px;

    letter-spacing: 2px;

    text-transform: uppercase;

}


.header-link span {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 32px;

    height: 32px;

    border:
        1px solid
        #444;

    transition: .4s;

}


.header-link:hover span {

    background: white;

    color: black;

    transform:
        translate(3px,-3px);

}


.mobile-toggle {

    display: none;

    width: 42px;

    height: 42px;

    border: 0;

    background: transparent;

}


.mobile-toggle span {

    display: block;

    width: 27px;

    height: 1px;

    background: white;

    margin: 6px auto;

    transition: .4s;

}


.mobile-toggle.active span:first-child {

    transform:
        translateY(3.5px)
        rotate(45deg);

}


.mobile-toggle.active span:last-child {

    transform:
        translateY(-3.5px)
        rotate(-45deg);

}

.mobile-menu {

    position: fixed;

    inset: 0;

    z-index: 4000;

    background: #0a0a0a;

    padding:
        120px 7vw 40px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    transform:
        translateY(-100%);

    transition:
        transform .8s
        cubic-bezier(.77,0,.18,1);

}


.mobile-menu.active {

    transform:
        translateY(0);

}


.mobile-menu-top,
.mobile-menu-bottom {

    display: flex;

    justify-content: space-between;

    color: #555;

    font-size: 8px;

    letter-spacing: 3px;

}


.mobile-menu nav {

    display: flex;

    flex-direction: column;

    gap: 12px;

}


.mobile-menu nav a {

    display: flex;

    align-items: baseline;

    gap: 20px;

    font-family: var(--display);

    font-size: clamp(42px,10vw,85px);

    letter-spacing: -.07em;

}


.mobile-menu nav small {

    color: #555;

    font-family: var(--sans);

    font-size: 9px;

    letter-spacing: 2px;

}


.hero {

    height: 100vh;

    min-height: 760px;

    padding:
        130px 7vw 40px;

    position: relative;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    overflow: hidden;

}


.hero-background {

    position: absolute;

    inset: 0;

    pointer-events: none;

}


.hero-grid {

    position: absolute;

    inset: 0;

    opacity: .45;

    background-image:

        linear-gradient(
            rgba(255,255,255,.025) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,.025) 1px,
            transparent 1px
        );

    background-size:
        110px 110px;

}


.hero-glow {

    position: absolute;

    border-radius: 50%;

    filter: blur(120px);

    opacity: .08;

}


.hero-glow-one {

    width: 600px;

    height: 600px;

    right: -250px;

    top: -250px;

    background: white;

}


.hero-glow-two {

    width: 450px;

    height: 450px;

    left: 15%;

    bottom: -300px;

    background: #777;

}


.hero-top,
.hero-footer {

    position: relative;

    z-index: 2;

    display: flex;

    justify-content: space-between;

}


.hero-label,
.hero-coordinates,
.hero-footer {

    color: #555;

    font-size: 8px;

    letter-spacing: 3px;

}


.hero-center {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 5vw;

}


.hero-monogram {

    width: 180px;

    height: 180px;

    border:
        1px solid
        rgba(255,255,255,.14);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;

}


.hero-monogram::before {

    content: "";

    position: absolute;

    inset: 13px;

    border:
        1px dashed
        rgba(255,255,255,.16);

    border-radius: 50%;

    animation:
        slowSpin
        25s
        linear
        infinite;

}


.hero-monogram svg {

    width: 115px;

    height: 115px;

    position: relative;

    z-index: 2;

}


.hero-monogram path {

    fill: none;

    stroke: var(--white);

    stroke-width: 1.7;

}


.hero-monogram circle {

    fill: var(--white);

}


@keyframes slowSpin {

    to {
        transform:
            rotate(360deg);
    }

}


.hero-title {

    font-family: var(--display);

    font-size: clamp(70px,10vw,170px);

    line-height: .78;

    letter-spacing: -.09em;

    font-weight: 600;

}


.hero-title h1 {

    font: inherit;

}


.hero-title-light {

    color: #666;

}


.hero-title-light span {

    color: var(--white);

}


.hero-bottom {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1.2fr
        .8fr;

    gap: 10vw;

    align-items: end;

}


.eyebrow {

    color: #666;

    font-size: 8px;

    letter-spacing: 4px;

}


.hero-statement h2 {

    margin-top: 18px;

    font-size: clamp(28px,3.5vw,55px);

    line-height: 1;

    font-weight: 300;

    letter-spacing: -.04em;

}


.hero-statement em {

    display: block;

    color: #777;

    font-family: var(--serif);

    font-style: italic;

}


.hero-intro {

    display: flex;

    align-items: end;

    justify-content: space-between;

    gap: 30px;

}


.hero-intro p {

    max-width: 310px;

    color: #666;

    font-size: 12px;

    line-height: 1.8;

}


.round-button {

    width: 78px;

    height: 78px;

    flex-shrink: 0;

    border:
        1px solid
        #444;

    border-radius: 50%;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 5px;

    transition: .4s;

}


.round-button span {

    color: #666;

    font-size: 7px;

    letter-spacing: 2px;

    text-transform: uppercase;

}


.round-button strong {

    font-size: 18px;

    font-weight: 300;

}


.round-button:hover {

    background: white;

    color: black;

}


.hero-footer {

    align-items: center;

}


.scroll-indicator {

    display: block;

    width: 100px;

    height: 1px;

    background: #292929;

    position: relative;

    overflow: hidden;

}


.scroll-indicator::after {

    content: "";

    position: absolute;

    left: 0;

    width: 30%;

    height: 100%;

    background: #888;

    animation:
        scrollMove
        2.5s
        infinite;

}


@keyframes scrollMove {

    0% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(350%);
    }

    100% {
        transform: translateX(-100%);
    }

}

.marquee {

    overflow: hidden;

    white-space: nowrap;

    border-top:
        1px solid
        var(--line-soft);

    border-bottom:
        1px solid
        var(--line-soft);

    padding:
        24px 0;

    background: #0c0c0c;

}


.marquee-track {

    display: inline-flex;

    align-items: center;

    gap: 35px;

    animation:
        marquee
        28s
        linear
        infinite;

}


.marquee-track span {

    font-family: var(--display);

    color: #777;

    font-size: 10px;

    letter-spacing: 5px;

}


.marquee-track i {

    color: #444;

    font-style: normal;

}


@keyframes marquee {

    to {
        transform:
            translateX(-50%);
    }

}


.page-section {

    padding:
        150px 7vw;

}


.section-label {

    display: grid;

    grid-template-columns:
        35px
        1fr;

    gap: 25px;

    color: #555;

    font-size: 8px;

    letter-spacing: 4px;

    margin-bottom: 100px;

}


.section-label span:last-child {

    border-top:
        1px solid
        #292929;

    padding-top: 12px;

}



.home-intro {

    background: #0d0d0d;

}


.intro-grid {

    display: grid;

    grid-template-columns:
        1.2fr
        .8fr;

    gap: 12vw;

}


.large-heading h2 {

    margin-top: 30px;

    font-family: var(--display);

    font-size: clamp(55px,7vw,110px);

    line-height: .88;

    letter-spacing: -.08em;

    font-weight: 500;

}


.large-heading h2 span {

    display: block;

    color: #777;

}


.large-heading h2 em {

    display: block;

    color: white;

    font-family: var(--serif);

    font-style: italic;

    font-weight: 500;

}


.intro-copy {

    padding-top: 70px;

}


.large-copy {

    color: #ddd;

    font-size: 20px;

    line-height: 1.6;

}


.intro-copy > p:not(.large-copy) {

    margin-top: 45px;

    color: #666;

    font-size: 13px;

    line-height: 1.9;

}


.text-link {

    display: inline-flex;

    gap: 30px;

    margin-top: 45px;

    padding-bottom: 12px;

    border-bottom:
        1px solid
        #444;

    font-size: 9px;

    letter-spacing: 3px;

    text-transform: uppercase;

}


.text-link span {

    transition: .3s;

}


.text-link:hover span {

    transform:
        translate(4px,-4px);

}


.feature-section {

    padding:
        100px 7vw 160px;

    background: #0d0d0d;

}


.feature-card {

    min-height: 480px;

    padding: 60px;

    border:
        1px solid
        #292929;

    position: relative;

    display: flex;

    align-items: center;

    overflow: hidden;

}


.feature-card::before {

    content: "4U";

    position: absolute;

    right: -40px;

    bottom: -120px;

    font-family: var(--display);

    font-size: 430px;

    font-weight: 800;

    color: rgba(255,255,255,.025);

}


.feature-number {

    position: absolute;

    top: 60px;

    left: 60px;

    color: #555;

    font-size: 9px;

}


.feature-content {

    max-width: 700px;

}


.feature-content h2 {

    margin-top: 30px;

    font-family: var(--display);

    font-size: clamp(50px,7vw,105px);

    line-height: .88;

    letter-spacing: -.08em;

    font-weight: 500;

}


.feature-content h2 em {

    display: block;

    color: #777;

    font-family: var(--serif);

    font-style: italic;

}


.feature-content p {

    max-width: 350px;

    margin-top: 35px;

    color: #666;

    font-size: 13px;

    line-height: 1.8;

}


.feature-arrow {

    position: absolute;

    right: 60px;

    bottom: 60px;

    width: 55px;

    height: 55px;

    border:
        1px solid
        #444;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: .4s;

}


.feature-arrow:hover {

    background: white;

    color: black;

    transform:
        translate(5px,-5px);

}


.page-hero {

    min-height: 80vh;

    padding:
        140px 7vw 50px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    border-bottom:
        1px solid
        #222;

}


.page-hero-top,
.page-hero-bottom {

    display: flex;

    justify-content: space-between;

    color: #555;

    font-size: 8px;

    letter-spacing: 3px;

}


.page-hero-content {

    max-width: 1100px;

}


.page-hero-content h1 {

    margin-top: 30px;

    font-family: var(--display);

    font-size: clamp(65px,10vw,155px);

    line-height: .82;

    letter-spacing: -.09em;

    font-weight: 500;

}


.page-hero-content h1 span {

    color: #666;

}


.page-hero-content h1 em {

    font-family: var(--serif);

    font-style: italic;

    font-weight: 500;

}


.page-hero-bottom {

    padding-top: 40px;

}


.about-story {

    background: #0d0d0d;

}


.story-grid {

    display: grid;

    grid-template-columns:
        1fr
        .8fr;

    gap: 12vw;

}


.story-heading h2 {

    font-family: var(--display);

    font-size: clamp(60px,7vw,110px);

    line-height: .85;

    letter-spacing: -.08em;

    font-weight: 500;

}


.story-heading em {

    display: block;

    color: #777;

    font-family: var(--serif);

    font-style: italic;

}


.story-content {

    padding-top: 30px;

}


.story-content .line {

    height: 1px;

    background: #292929;

    margin:
        45px 0;

}


.story-content p:not(.large-copy) {

    margin-top: 25px;

    color: #666;

    font-size: 13px;

    line-height: 1.9;

}


.values-section {

    padding:
        150px 7vw;

    background: #080808;

}


.values-list {

    border-top:
        1px solid
        #292929;

}


.value {

    display: grid;

    grid-template-columns:
        80px
        1fr;

    gap: 60px;

    padding:
        45px 0;

    border-bottom:
        1px solid
        #292929;

}


.value > span {

    color: #555;

    font-size: 9px;

}


.value h3 {

    font-family: var(--display);

    font-size: clamp(32px,4vw,60px);

    font-weight: 500;

    letter-spacing: -.05em;

}


.value p {

    max-width: 400px;

    margin-top: 15px;

    color: #666;

    font-size: 13px;

    line-height: 1.8;

}


.dark-statement {

    min-height: 75vh;

    display: flex;

    align-items: center;

    padding:
        10vw 7vw;

    background: #f0efea;

    color: #080808;

}


.dark-statement h2 {

    margin-top: 30px;

    font-family: var(--display);

    font-size: clamp(70px,10vw,160px);

    line-height: .8;

    letter-spacing: -.09em;

    font-weight: 500;

}


.dark-statement h2 em {

    display: block;

    color: #888;

    font-family: var(--serif);

    font-style: italic;

}


.services-intro {

    background: #0d0d0d;

}


.services-intro-heading h2 {

    max-width: 1000px;

    font-family: var(--display);

    font-size: clamp(60px,9vw,145px);

    line-height: .82;

    letter-spacing: -.09em;

    font-weight: 500;

}


.services-intro-heading em {

    display: block;

    color: #777;

    font-family: var(--serif);

    font-style: italic;

}


.service-list {

    padding:
        0 7vw;

    background: #0d0d0d;

}


.service-item {

    min-height: 330px;

    display: grid;

    grid-template-columns:
        80px
        1fr
        .7fr
        60px;

    gap: 50px;

    align-items: center;

    border-top:
        1px solid
        #292929;

    position: relative;

}


.service-item::before {

    content: "";

    position: absolute;

    left: -7vw;

    right: -7vw;

    top: 0;

    bottom: 0;

    background: #141414;

    transform:
        scaleY(0);

    transform-origin:
        bottom;

    transition:
        transform .5s
        cubic-bezier(.77,0,.18,1);

    z-index: 0;

}


.service-item:hover::before {

    transform:
        scaleY(1);

}


.service-item > * {

    position: relative;

    z-index: 2;

}


.service-index {

    color: #555;

    font-size: 9px;

}


.service-main h3 {

    margin-top: 20px;

    font-family: var(--display);

    font-size: clamp(40px,5vw,80px);

    font-weight: 500;

    letter-spacing: -.07em;

}


.service-copy p {

    max-width: 370px;

    color: #666;

    font-size: 13px;

    line-height: 1.8;

}


.service-symbol {

    width: 52px;

    height: 52px;

    border:
        1px solid
        #333;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: .4s;

}


.service-item:hover .service-symbol {

    background: white;

    color: black;

    transform:
        rotate(45deg);

}


.service-cta,
.representation-cta {

    padding:
        180px 7vw;

    background: #080808;

}


.service-cta h2,
.representation-cta h2 {

    margin-top: 30px;

    font-family: var(--display);

    font-size: clamp(65px,9vw,145px);

    line-height: .82;

    letter-spacing: -.09em;

    font-weight: 500;

}


.service-cta h2 em,
.representation-cta h2 em {

    display: block;

    color: #777;

    font-family: var(--serif);

    font-style: italic;

}


.outline-button {

    display: inline-flex;

    align-items: center;

    gap: 30px;

    margin-top: 55px;

    padding:
        17px 22px;

    border:
        1px solid
        #444;

    font-size: 9px;

    letter-spacing: 3px;

    text-transform: uppercase;

    transition: .4s;

}


.outline-button:hover {

    background: white;

    color: black;

}


.outline-button span {

    font-size: 15px;

}


.representation-intro {

    background: #0d0d0d;

}


.representation-grid {

    display: grid;

    grid-template-columns:
        1.1fr
        .9fr;

    gap: 12vw;

}


.representation-grid h2 {

    font-family: var(--display);

    font-size: clamp(60px,7vw,110px);

    line-height: .85;

    letter-spacing: -.08em;

    font-weight: 500;

}


.representation-grid h2 em {

    display: block;

    color: #777;

    font-family: var(--serif);

    font-style: italic;

}


.representation-grid > div:last-child {

    padding-top: 20px;

}


.representation-grid p:not(.large-copy) {

    margin-top: 35px;

    color: #666;

    font-size: 13px;

    line-height: 1.9;

}


.representation-process {

    padding:
        150px 7vw;

    background: #080808;

}


.process-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    border-top:
        1px solid
        #292929;

}


.process-card {

    min-height: 350px;

    padding:
        35px;

    border-right:
        1px solid
        #292929;

}


.process-card > span {

    color: #555;

    font-size: 9px;

}


.process-card h3 {

    margin-top: 100px;

    font-family: var(--display);

    font-size: 32px;

    font-weight: 500;

    letter-spacing: -.05em;

}


.process-card p {

    margin-top: 20px;

    color: #666;

    font-size: 12px;

    line-height: 1.8;

}


.contact-hero {

    min-height: 75vh;

    padding:
        140px 7vw 80px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    background: #0d0d0d;

}


.contact-hero-top {

    display: flex;

    justify-content: space-between;

    color: #555;

    font-size: 8px;

    letter-spacing: 3px;

}


.contact-hero-content h1 {

    margin-top: 30px;

    font-family: var(--display);

    font-size: clamp(75px,11vw,180px);

    line-height: .78;

    letter-spacing: -.1em;

    font-weight: 500;

}


.contact-hero-content h1 em {

    display: block;

    color: #777;

    font-family: var(--serif);

    font-style: italic;

}


.contact-description {

    max-width: 430px;

    margin-left: auto;

    color: #666;

    font-size: 13px;

    line-height: 1.8;

}


.contact-section {

    padding:
        150px 7vw;

    background: #080808;

}


.contact-layout {

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 12vw;

}


.contact-heading h2 {

    font-family: var(--display);

    font-size: clamp(55px,6vw,100px);

    line-height: .85;

    letter-spacing: -.08em;

    font-weight: 500;

}


.contact-heading em {

    display: block;

    color: #777;

    font-family: var(--serif);

    font-style: italic;

}


.contact-people {

    border-top:
        1px solid
        #292929;

}


.person-link {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding:
        30px 0;

    border-bottom:
        1px solid
        #292929;

}


.person-link > div {

    display: flex;

    align-items: center;

    gap: 35px;

}


.person-number {

    color: #555;

    font-size: 8px;

}


.person-link strong {

    font-family: var(--display);

    font-size: clamp(25px,3vw,45px);

    font-weight: 500;

    letter-spacing: -.04em;

    transition: .3s;

}


.person-arrow {

    width: 45px;

    height: 45px;

    border:
        1px solid
        #333;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: .4s;

}


.person-link:hover strong {

    transform:
        translateX(10px);

}


.person-link:hover .person-arrow {

    background: white;

    color: black;

    transform:
        translate(4px,-4px);

}


.contact-footer-section {

    padding:
        100px 7vw;

    background: #0d0d0d;

}


.contact-footer-section > div {

    display: flex;

    flex-direction: column;

    gap: 25px;

}


.contact-footer-section a {

    width: fit-content;

    font-family: var(--display);

    font-size: clamp(25px,4vw,60px);

    letter-spacing: -.05em;

    border-bottom:
        1px solid
        #444;

    padding-bottom: 15px;

}


.contact-footer-section a span {

    font-size: 20px;

}

.site-footer {

    padding:
        80px 7vw 30px;

    background: #070707;

}


.footer-top {

    display: grid;

    grid-template-columns:
        1fr
        1fr
        1fr;

    align-items: center;

    padding-bottom: 80px;

}


.footer-logo {

    display: flex;

    align-items: center;

    gap: 15px;

    font-family: var(--display);

    font-size: 9px;

    letter-spacing: 3px;

}


.footer-logo svg {

    width: 40px;

    height: 40px;

}


.footer-logo path {

    fill: none;

    stroke: #eee;

    stroke-width: 1.8;

}


.footer-logo circle {

    fill: #eee;

}


.footer-top > p {

    text-align: center;

    color: #555;

    font-family: var(--serif);

    font-style: italic;

    font-size: 14px;

}


.footer-contact {

    justify-self: end;

    color: #777;

    font-size: 9px;

    letter-spacing: 2px;

    text-transform: uppercase;

}


.footer-bottom {

    display: flex;

    justify-content: space-between;

    padding-top: 25px;

    border-top:
        1px solid
        #222;

    color: #444;

    font-size: 7px;

    letter-spacing: 2px;

}


.reveal {

    opacity: 0;

    transform:
        translateY(50px);

    transition:
        opacity 1s
        cubic-bezier(.2,.8,.2,1),
        transform 1s
        cubic-bezier(.2,.8,.2,1);

}


.reveal.active {

    opacity: 1;

    transform:
        translateY(0);

}


@media (max-width: 1000px) {

    .desktop-nav,
    .header-link {

        display: none;

    }


    .mobile-toggle {

        display: block;

    }


    .hero-center {

        gap: 35px;

    }


    .hero-monogram {

        width: 140px;

        height: 140px;

    }


    .intro-grid,
    .story-grid,
    .representation-grid,
    .contact-layout {

        grid-template-columns:
            1fr;

        gap: 60px;

    }


    .intro-copy,
    .story-content,
    .representation-grid > div:last-child {

        padding-top: 0;

    }


    .service-item {

        grid-template-columns:
            50px
            1fr
            50px;

        gap: 30px;

    }


    .service-copy {

        grid-column:
            2 / 3;

    }


    .service-symbol {

        grid-column: 3;

        grid-row: 1;

    }


    .process-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .footer-top {

        grid-template-columns:
            1fr
            1fr;

        gap: 40px;

    }


    .footer-top > p {

        display: none;

    }

}


@media (max-width: 600px) {

    .custom-cursor,
    .cursor-dot {

        display: none;

    }


    .site-header {

        height: 75px;

        padding:
            0 5vw;

    }


    .logo-symbol {

        width: 36px;

        height: 36px;

    }


    .logo-wordmark {

        font-size: 9px;

        letter-spacing: 2px;

    }


    .hero {

        min-height: 100svh;

        padding:
            105px 5vw 30px;

    }


    .hero-top {

        font-size: 7px;

    }


    .hero-coordinates {

        display: none;

    }


    .hero-center {

        flex-direction: column;

        align-items: flex-start;

        gap: 35px;

    }


    .hero-monogram {

        width: 105px;

        height: 105px;

    }


    .hero-monogram svg {

        width: 70px;

        height: 70px;

    }


    .hero-title {

        font-size: 17vw;

    }


    .hero-bottom {

        grid-template-columns:
            1fr;

        gap: 30px;

    }


    .hero-statement h2 {

        font-size: 27px;

    }


    .hero-intro {

        align-items: center;

    }


    .hero-intro p {

        font-size: 11px;

    }


    .scroll-indicator {

        display: none;

    }


    .hero-footer {

        font-size: 7px;

    }


    .hero-footer span:nth-child(2) {

        margin-left: auto;

    }


    .page-section {

        padding:
            100px 5vw;

    }


    .section-label {

        margin-bottom: 70px;

    }


    .large-heading h2,
    .story-heading h2 {

        font-size: 58px;

    }


    .large-copy {

        font-size: 18px;

    }


    .feature-section {

        padding:
            50px 5vw 100px;

    }


    .feature-card {

        min-height: 500px;

        padding: 35px;

    }


    .feature-number {

        top: 35px;

        left: 35px;

    }


    .feature-arrow {

        right: 35px;

        bottom: 35px;

    }


    .page-hero {

        min-height: 75svh;

        padding:
            115px 5vw 40px;

    }


    .page-hero-top span:last-child {

        display: none;

    }


    .page-hero-content h1 {

        font-size: 18vw;

    }


    .value {

        grid-template-columns:
            35px
            1fr;

        gap: 20px;

    }


    .value h3 {

        font-size: 35px;

    }


    .dark-statement {

        min-height: 600px;

        padding:
            15vw 5vw;

    }


    .dark-statement h2 {

        font-size: 18vw;

    }


    .services-intro-heading h2 {

        font-size: 17vw;

    }


    .service-list {

        padding:
            0 5vw;

    }


    .service-item {

        min-height: 400px;

        grid-template-columns:
            35px
            1fr
            35px;

        gap: 20px;

    }


    .service-main h3 {

        font-size: 40px;

    }


    .service-copy {

        grid-column:
            2 / 4;

    }


    .service-symbol {

        grid-column: 3;

    }


    .process-grid {

        grid-template-columns:
            1fr;

    }


    .process-card {

        min-height: 300px;

        border-right: 0;

        border-bottom:
            1px solid
            #292929;

    }


    .service-cta,
    .representation-cta {

        padding:
            120px 5vw;

    }


    .service-cta h2,
    .representation-cta h2 {

        font-size: 17vw;

    }


    .contact-hero {

        min-height: 70svh;

        padding:
            115px 5vw 60px;

    }


    .contact-hero-content h1 {

        font-size: 19vw;

    }


    .contact-description {

        margin-left: 0;

    }


    .contact-section {

        padding:
            100px 5vw;

    }


    .contact-heading h2 {

        font-size: 15vw;

    }


    .person-link strong {

        font-size: 28px;

    }


    .person-link > div {

        gap: 20px;

    }


    .contact-footer-section {

        padding:
            80px 5vw;

    }


    .contact-footer-section a {

        font-size: 22px;

    }


    .site-footer {

        padding:
            60px 5vw 25px;

    }


    .footer-top {

        grid-template-columns:
            1fr;

        gap: 35px;

        padding-bottom: 50px;

    }


    .footer-contact {

        justify-self: start;

    }


    .footer-bottom {

        flex-direction: column;

        gap: 15px;

        line-height: 1.5;

    }

}