:root {
    --black: #050505;
    --black-soft: #090909;
    --gold: #d7a33c;
    --gold-light: #efc76c;
    --gold-dark: #8c6420;
    --cream: #f2eee7;
    --grey: #a7a39c;
    --line: rgba(215, 163, 60, 0.3);
    --white-line: rgba(255, 255, 255, 0.12);

    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: "Manrope", Arial, sans-serif;
}


* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;
    overflow-x: hidden;

    background: var(--black);
    color: var(--cream);

    font-family: var(--sans);
}


a {
    color: inherit;
    text-decoration: none;
}


button {
    font: inherit;
}


/* ==========================================
   HEADER
========================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    z-index: 100;

    border-bottom: 1px solid rgba(215, 163, 60, 0.2);

    transition: 0.3s;
}


.site-header.scrolled {
    background: rgba(5, 5, 5, 0.92);
    backdrop-filter: blur(15px);
}


.nav-wrap {
    width: min(1400px, calc(100% - 60px));

    min-height: 88px;

    margin: auto;

    display: flex;
    justify-content: space-between;
    align-items: center;
}


.brand {
    display: flex;
    align-items: center;
    gap: 13px;
}


.brand-mark {
    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    background: linear-gradient(135deg,
            var(--gold-light),
            var(--gold-dark));

    color: #080808;

    transform: rotate(45deg);
}


.brand-mark span {
    transform: rotate(-45deg);

    font-family: var(--serif);
    font-size: 2rem;
}


.brand-copy {
    display: grid;
}


.brand-copy strong {
    letter-spacing: 0.22em;
}


.brand-copy small {
    margin-top: 5px;

    color: var(--gold);

    font-size: 0.55rem;
    letter-spacing: 0.22em;
}


.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}


.main-nav a {
    color: #d3cec5;

    font-size: 0.75rem;
    font-weight: 600;

    text-transform: uppercase;

    transition: 0.2s;
}


.main-nav a:hover {
    color: var(--gold-light);
}


.nav-cta {
    border: 1px solid var(--gold);
    padding: 12px 18px;
}


.menu-toggle {
    display: none;

    background: none;
    border: 0;
}


.menu-toggle span {
    display: block;

    width: 26px;
    height: 1px;

    margin: 6px;

    background: white;
}


/* ==========================================
   HERO
========================================== */

.new-hero {
    min-height: 100vh;

    display: grid;
    grid-template-columns: 45% 55%;

    background: var(--black);

    border-bottom: 1px solid var(--line);
}


.hero-left {
    position: relative;

    min-height: 100vh;

    padding:
        130px clamp(30px, 5vw, 85px) 55px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    z-index: 2;
}


.hero-kicker {
    max-width: 480px;

    color: var(--gold);

    font-size: 0.69rem;
    font-weight: 700;

    letter-spacing: 0.14em;

    text-transform: uppercase;

    line-height: 1.7;
}


.hero-main-copy h1 {
    margin: 25px 0 30px;

    display: flex;
    flex-direction: column;

    font-family: var(--serif);
    font-size: clamp(5rem, 8.7vw, 9.5rem);
    font-weight: 500;

    line-height: 0.72;

    letter-spacing: -0.045em;
}


.hero-main-copy h1 span {
    display: block;
}


.hero-main-copy h1 .gold-word {
    color: var(--gold);
    font-style: italic;

    margin-left: 14%;
}


.hero-main-copy p {
    max-width: 500px;

    margin: 40px 0 30px;

    color: var(--grey);

    font-size: 0.95rem;

    line-height: 1.8;
}


.editorial-button {
    display: inline-flex;
    align-items: center;
    gap: 35px;

    padding: 17px 0;

    border-bottom: 1px solid var(--gold);

    color: var(--gold-light);

    font-size: 0.72rem;
    font-weight: 700;

    letter-spacing: 0.12em;
}


.editorial-button span {
    font-size: 1.1rem;
}


.hero-bottom-label {
    color: #5e5a54;

    font-size: 0.62rem;

    letter-spacing: 0.3em;
}


.hero-right {
    position: relative;

    min-height: 100vh;

    overflow: hidden;

    border-left: 1px solid var(--line);
}


.hero-video {
    position: absolute;

    width: 100%;
    height: 100%;

    object-fit: cover;

    filter:
        brightness(0.9) saturate(0.85) contrast(1.08);
}


.video-shade {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(5, 5, 5, 0.6),
            rgba(5, 5, 5, 0.05) 45%),
        linear-gradient(0deg,
            rgba(5, 5, 5, 0.6),
            transparent 45%);
}


.video-stamp {
    position: absolute;

    right: 8%;
    bottom: 11%;

    z-index: 2;
}


.video-stamp>span {
    display: block;

    color: var(--gold-light);

    font-family: var(--serif);

    font-size: clamp(4rem, 8vw, 8rem);

    line-height: 0.75;
}


.video-stamp p {
    margin: 20px 0 0;

    color: white;

    font-family: var(--serif);

    font-size: 1.5rem;

    line-height: 1.1;
}


.vertical-scroll {
    position: absolute;

    right: 30px;
    top: 50%;

    z-index: 3;

    display: flex;
    gap: 20px;

    color: #ccc6bb;

    font-size: 0.55rem;

    letter-spacing: 0.2em;

    transform:
        rotate(90deg) translateX(50%);

    transform-origin: right center;
}


/* ==========================================
   INTRO
========================================== */

.editorial-intro {
    min-height: 90vh;

    display: grid;
    grid-template-columns: 12% 88%;

    padding: 130px 5vw;

    background: #090909;

    border-bottom: 1px solid var(--white-line);
}


.intro-number {
    color: var(--gold);

    font-family: var(--serif);
    font-size: 1.4rem;
}


.intro-content {
    max-width: 1200px;
}


.micro-heading {
    margin: 0 0 35px;

    color: var(--gold);

    font-size: 0.67rem;
    font-weight: 700;

    letter-spacing: 0.22em;

    text-transform: uppercase;
}


.intro-content h2 {
    max-width: 1100px;

    margin: 0;

    font-family: var(--serif);

    font-size: clamp(3.6rem, 7vw, 7rem);
    font-weight: 500;

    line-height: 0.98;

    letter-spacing: -0.035em;
}


.intro-content h2 span {
    color: var(--gold);

    font-style: italic;
}


.intro-description {
    max-width: 760px;

    margin: 60px 0 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
}


.intro-description p {
    margin: 0;

    color: var(--grey);

    font-size: 0.9rem;

    line-height: 1.8;
}


/* ==========================================
   SERVICE DIRECTORY
========================================== */

.service-directory {
    padding: 120px 5vw 140px;

    background: #050505;
}


.directory-header {
    display: flex;
    justify-content: space-between;
    align-items: end;

    margin-bottom: 60px;

    padding-bottom: 30px;

    border-bottom: 1px solid var(--line);
}


.directory-header h2 {
    margin: 0;

    font-family: var(--serif);

    font-size: clamp(3rem, 5vw, 5rem);

    font-weight: 500;
}


.directory-count {
    color: #78736c;

    font-size: 0.65rem;

    letter-spacing: 0.16em;
}


.directory-layout {
    display: grid;

    grid-template-columns: 1.5fr 0.7fr;

    gap: 7vw;

    align-items: start;
}


.service-list {
    border-top: 1px solid var(--white-line);
}


.service-row {
    width: 100%;

    padding: 28px 10px;

    display: grid;
    grid-template-columns: 65px 1fr 50px;

    align-items: center;

    color: white;
    background: transparent;

    border: 0;
    border-bottom: 1px solid var(--white-line);

    text-align: left;

    cursor: pointer;

    transition: 0.3s;
}


.service-row:hover,
.service-row.active {
    padding-left: 22px;

    background:
        linear-gradient(90deg,
            rgba(215, 163, 60, 0.1),
            transparent);
}


.service-index {
    color: #77716a;

    font-family: var(--serif);
}


.service-name {
    font-family: var(--serif);

    font-size: clamp(1.6rem, 2.8vw, 2.7rem);
}


.service-row.active .service-name,
.service-row:hover .service-name {
    color: var(--gold-light);
}


.service-arrow {
    color: var(--gold);

    font-size: 1.2rem;

    text-align: right;
}


.service-preview {
    position: sticky;

    top: 135px;

    padding: 28px;

    border: 1px solid var(--line);
}


.preview-number {
    margin-bottom: 25px;

    color: #746f67;

    font-size: 0.57rem;

    letter-spacing: 0.2em;
}


.preview-visual {
    height: 260px;

    display: grid;
    place-items: center;

    margin-bottom: 30px;

    color: var(--gold-light);

    background:
        radial-gradient(circle,
            rgba(215, 163, 60, 0.17),
            transparent 58%),
        #0a0a0a;

    border: 1px solid var(--white-line);

    font-family: var(--serif);

    font-size: 5rem;
}


.service-preview h3 {
    margin: 0 0 18px;

    font-family: var(--serif);

    font-size: 2.4rem;

    font-weight: 500;
}


.service-preview p {
    min-height: 110px;

    color: var(--grey);

    line-height: 1.8;
}


.service-preview a {
    display: flex;
    justify-content: space-between;

    margin-top: 30px;

    padding-top: 20px;

    border-top: 1px solid var(--line);

    color: var(--gold);

    font-size: 0.65rem;

    letter-spacing: 0.14em;
}


/* ==========================================
   MANIFESTO
========================================== */

.brand-manifesto {
    padding: 100px 5vw 70px;

    overflow: hidden;

    background: #0a0908;

    border-block: 1px solid var(--line);
}


.manifesto-line {
    font-family: var(--serif);

    font-size: clamp(5rem, 13vw, 13rem);

    line-height: 0.76;

    letter-spacing: -0.06em;

    white-space: nowrap;
}


.manifesto-line.middle {
    color: var(--gold);

    margin-left: 28%;

    font-style: italic;
}


.manifesto-line.right {
    text-align: right;
}


.manifesto-bottom {
    margin-top: 90px;

    display: flex;
    justify-content: center;
    gap: 25px;

    color: #aaa49c;

    font-size: 0.63rem;

    letter-spacing: 0.15em;
}


.manifesto-bottom i {
    color: var(--gold);
}


/* ==========================================
   NETWORK
========================================== */

.network-section {
    min-height: 850px;

    padding: 130px 5vw;

    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    align-items: center;

    gap: 5vw;

    background: #060606;
}


.network-copy h2 {
    max-width: 530px;

    margin: 0 0 30px;

    font-family: var(--serif);

    font-size: clamp(3rem, 5.5vw, 5.5rem);

    font-weight: 500;

    line-height: 1;
}


.network-copy>p:not(.micro-heading) {
    max-width: 500px;

    color: var(--grey);

    line-height: 1.8;
}


.simple-link {
    display: inline-flex;
    gap: 30px;

    margin-top: 25px;

    padding-bottom: 8px;

    color: var(--gold);

    border-bottom: 1px solid var(--gold);

    font-size: 0.67rem;

    letter-spacing: 0.15em;
}


.network-map {
    position: relative;

    height: 620px;

    border: 1px solid var(--white-line);

    background:
        radial-gradient(circle at center,
            rgba(215, 163, 60, 0.07),
            transparent 50%);
}


.network-center {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 150px;
    height: 150px;

    display: grid;
    place-content: center;

    text-align: center;

    border: 1px solid var(--gold);

    border-radius: 50%;

    transform: translate(-50%, -50%);

    background: #080808;

    z-index: 2;
}


.network-center strong {
    color: var(--gold-light);

    font-family: var(--serif);

    font-size: 3.6rem;

    line-height: 0.8;
}


.network-center span {
    margin-top: 10px;

    color: #928d85;

    font-size: 0.55rem;

    letter-spacing: 0.2em;
}


.network-node {
    position: absolute;

    padding: 9px 13px;

    color: #bcb6ad;

    background: #080808;

    border: 1px solid var(--white-line);

    font-size: 0.58rem;

    letter-spacing: 0.14em;
}


.node-1 {
    top: 9%;
    left: 44%;
}

.node-2 {
    top: 25%;
    left: 7%;
}

.node-3 {
    top: 24%;
    right: 5%;
}

.node-4 {
    top: 48%;
    right: 2%;
}

.node-5 {
    bottom: 22%;
    right: 13%;
}

.node-6 {
    bottom: 7%;
    left: 45%;
}

.node-7 {
    bottom: 20%;
    left: 8%;
}

.node-8 {
    top: 49%;
    left: 3%;
}


.network-line {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 63%;

    height: 1px;

    background: rgba(215, 163, 60, 0.25);

    transform-origin: left center;
}


.line-one {
    transform: rotate(0deg);
}

.line-two {
    transform: rotate(45deg);
}

.line-three {
    transform: rotate(90deg);
}

.line-four {
    transform: rotate(135deg);
}


/* ==========================================
   PROCESS
========================================== */

.new-process {
    padding: 130px 5vw;

    background: #0a0a0a;

    border-top: 1px solid var(--white-line);
}


.process-heading h2 {
    margin: 0;

    font-family: var(--serif);

    font-size: clamp(3rem, 5.5vw, 5.5rem);

    font-weight: 500;
}


.process-track {
    position: relative;

    margin-top: 100px;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 50px;
}


.process-line {
    position: absolute;

    top: 10px;

    left: 0;
    right: 0;

    height: 1px;

    background: var(--line);
}


.process-item {
    position: relative;

    padding-top: 52px;
}


.process-dot {
    position: absolute;

    top: 3px;
    left: 0;

    width: 15px;
    height: 15px;

    background: var(--gold);

    border-radius: 50%;

    box-shadow:
        0 0 0 8px rgba(215, 163, 60, 0.08);
}


.process-num {
    color: var(--gold);

    font-family: var(--serif);
}


.process-item h3 {
    margin: 25px 0 20px;

    font-family: var(--serif);

    font-size: clamp(2rem, 3vw, 3.1rem);

    font-weight: 500;

    line-height: 0.98;
}


.process-item p {
    max-width: 250px;

    color: var(--grey);

    font-size: 0.82rem;

    line-height: 1.7;
}


/* ==========================================
   BIG QUOTE
========================================== */

.big-quote {
    min-height: 80vh;

    padding: 120px 5vw;

    display: grid;
    place-content: center;

    text-align: center;

    background:
        radial-gradient(circle,
            rgba(215, 163, 60, 0.08),
            transparent 45%),
        #050505;
}


.quote-symbol {
    color: var(--gold);

    font-family: var(--serif);

    font-size: 7rem;

    line-height: 0.5;
}


.big-quote h2 {
    margin: 20px 0 0;

    font-family: var(--serif);

    font-size: clamp(4rem, 8vw, 8.5rem);

    font-weight: 500;

    line-height: 0.85;
}


.big-quote em {
    color: var(--gold);

    font-weight: 500;
}


/* ==========================================
   CONTACT
========================================== */

.editorial-contact {
    padding: 100px 5vw 130px;

    background: var(--gold);

    color: #070707;
}


.contact-top {
    display: flex;
    justify-content: space-between;

    border-bottom: 1px solid rgba(0, 0, 0, 0.3);

    padding-bottom: 25px;
}


.contact-top .micro-heading {
    color: #070707;
}


.contact-number {
    font-family: var(--serif);

    font-size: 1.3rem;
}


.contact-main {
    display: grid;

    grid-template-columns: 1.2fr 0.8fr;

    gap: 7vw;

    margin-top: 70px;
}


.contact-main h2 {
    margin: 0;

    font-family: var(--serif);

    font-size: clamp(5rem, 10vw, 10rem);

    font-weight: 600;

    line-height: 0.7;

    letter-spacing: -0.055em;
}


.contact-main h2 span {
    color: #fff4db;

    font-style: italic;
}


.contact-action {
    align-self: end;
}


.contact-action>p {
    max-width: 420px;

    margin-bottom: 45px;

    color: #20190d;

    line-height: 1.7;
}


.contact-action a {
    display: grid;

    grid-template-columns: 65px 1fr auto;

    align-items: center;

    padding: 22px 0;

    border-top: 1px solid rgba(0, 0, 0, 0.35);

    font-family: var(--serif);

    font-size: clamp(1.5rem, 2.3vw, 2.4rem);
}


.contact-action a:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.35);
}


.contact-action small {
    font-family: var(--sans);

    font-size: 0.55rem;

    letter-spacing: 0.12em;
}


/* ==========================================
   FOOTER
========================================== */

.site-footer {
    padding: 65px 5vw 25px;

    background: #030303;

    color: white;
}


.footer-grid {
    display: grid;

    grid-template-columns: 2fr 0.6fr 0.6fr;

    gap: 60px;
}


.footer-grid p {
    max-width: 420px;

    color: #8d8982;
}


.footer-links {
    display: grid;

    align-content: start;

    gap: 10px;
}


.footer-links strong {
    margin-bottom: 12px;

    color: var(--gold);

    font-size: 0.65rem;

    letter-spacing: 0.17em;
}


.footer-links a {
    color: #aaa59d;

    font-size: 0.78rem;
}


.footer-bottom {
    margin-top: 50px;

    padding-top: 22px;

    display: flex;

    justify-content: space-between;

    border-top: 1px solid var(--white-line);

    color: #6e6a64;

    font-size: 0.65rem;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 1000px) {

    .new-hero {
        grid-template-columns: 1fr;
    }


    .hero-left {
        min-height: 90vh;
    }


    .hero-right {
        min-height: 65vh;

        border-left: 0;

        border-top: 1px solid var(--line);
    }


    .directory-layout {
        grid-template-columns: 1fr;
    }


    .service-preview {
        position: relative;

        top: auto;
    }


    .network-section {
        grid-template-columns: 1fr;
    }


    .network-map {
        height: 580px;
    }


    .contact-main {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 800px) {

    .main-nav {
        position: fixed;

        inset: 0;

        display: grid;
        place-content: center;

        background: #050505;

        transform: translateX(100%);

        transition: 0.3s;
    }


    .main-nav.open {
        transform: translateX(0);
    }


    .main-nav a {
        font-family: var(--serif);

        font-size: 2rem;
    }


    .menu-toggle {
        position: relative;

        z-index: 10;

        display: block;
    }


    .editorial-intro {
        grid-template-columns: 1fr;

        gap: 30px;

        padding: 95px 25px;
    }


    .intro-description {
        grid-template-columns: 1fr;

        margin-left: 0;
    }


    .service-directory,
    .new-process,
    .network-section,
    .editorial-contact {
        padding-left: 25px;
        padding-right: 25px;
    }


    .directory-header {
        align-items: start;

        gap: 20px;

        flex-direction: column;
    }


    .service-row {
        grid-template-columns: 45px 1fr 30px;
    }


    .manifesto-line {
        font-size: 18vw;
    }


    .manifesto-line.middle {
        margin-left: 10%;
    }


    .manifesto-bottom {
        flex-wrap: wrap;

        gap: 12px;
    }


    .process-track {
        grid-template-columns: 1fr;

        gap: 0;

        margin-top: 60px;
    }


    .process-line {
        left: 7px;

        right: auto;

        top: 0;
        bottom: 0;

        width: 1px;
        height: auto;
    }


    .process-item {
        padding:
            0 0 60px 45px;
    }


    .process-dot {
        top: 4px;
    }


    .network-map {
        height: 500px;
    }


    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }


    .footer-grid>div:first-child {
        grid-column: 1 / -1;
    }

}


@media (max-width: 580px) {

    .nav-wrap {
        width: calc(100% - 28px);

        min-height: 76px;
    }


    .hero-left {
        min-height: 100svh;

        padding:
            120px 20px 35px;
    }


    .hero-main-copy h1 {
        font-size: 19vw;

        line-height: 0.78;
    }


    .hero-main-copy h1 .gold-word {
        margin-left: 0;
    }


    .hero-right {
        min-height: 55vh;
    }


    .vertical-scroll {
        display: none;
    }


    .editorial-intro {
        min-height: auto;
    }


    .intro-content h2 {
        font-size: 12vw;
    }


    .service-preview {
        padding: 20px;
    }


    .preview-visual {
        height: 190px;
    }


    .network-map {
        height: 430px;
    }


    .network-node {
        font-size: 0.45rem;
    }


    .network-center {
        width: 110px;
        height: 110px;
    }


    .network-center strong {
        font-size: 2.8rem;
    }


    .contact-main h2 {
        font-size: 20vw;
    }


    .contact-action a {
        grid-template-columns: 50px 1fr 25px;

        font-size: 1.35rem;
    }


    .footer-bottom {
        flex-direction: column;

        gap: 7px;
    }

}