:root {
    --black: #050505;
    --black-soft: #0a0a09;

    --white: #e9e7df;
    --muted: #77756e;
    --muted-dark: #41413d;

    --gold: #b99a61;
    --gold-light: #d2b77c;

    --line: rgba(185, 154, 97, 0.22);
    --line-soft: rgba(255,255,255,0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);

    font-family: "Inter", sans-serif;

    overflow-x: hidden;
}

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

.page-noise {
    position: fixed;
    inset: 0;

    pointer-events: none;

    opacity: 0.025;

    z-index: 100;

    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}


/* -------------------------------- */
/* HEADER */
/* -------------------------------- */

.header {
    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 110px;

    padding: 0 6vw;

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

    z-index: 20;
}

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

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

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

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: "Cinzel", serif;
    font-size: 9px;

    color: var(--gold);

    transform: rotate(45deg);
}

.brand-mark::first-letter {
    transform: rotate(-45deg);
}

.brand-name {
    font-family: "Cinzel", serif;

    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 600;
}

nav {
    display: flex;
    gap: 42px;
}

nav a {
    color: var(--muted);

    font-size: 9px;
    letter-spacing: 2px;

    transition: color .3s ease;
}

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


/* -------------------------------- */
/* HERO */
/* -------------------------------- */

.hero {
    position: relative;

    min-height: 100vh;

    padding: 160px 10vw 80px;

    display: flex;
    align-items: center;

    overflow: hidden;

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

.hero-grid {
    position: absolute;

    inset: 0;

    opacity: .28;

    background-image:
        linear-gradient(
            rgba(255,255,255,.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.035) 1px,
            transparent 1px
        );

    background-size: 90px 90px;

    mask-image:
        linear-gradient(
            to right,
            black,
            transparent 75%
        );
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-kicker {
    color: var(--gold);

    font-size: 9px;
    letter-spacing: 5px;

    margin-bottom: 32px;
}

.hero h1 {
    font-family: "Cinzel", serif;

    font-size: clamp(75px, 13vw, 190px);

    line-height: .79;

    letter-spacing: -7px;

    font-weight: 500;
}

.hero h1 span {
    color: transparent;

    -webkit-text-stroke: 1px var(--gold);
}

.hero-line {
    width: 150px;
    height: 1px;

    margin: 52px 0 40px;

    background: var(--gold);
}

.hero h2 {
    font-family: "Cinzel", serif;

    font-size: clamp(40px, 5.5vw, 82px);

    line-height: .92;

    font-weight: 400;

    letter-spacing: -2px;
}

.hero h2 em {
    color: var(--gold);

    font-style: normal;
}

.hero-bottom {
    margin-top: 65px;

    display: flex;
    align-items: flex-end;

    gap: 100px;
}

.hero-bottom p {
    color: var(--muted);

    font-size: 12px;
    line-height: 1.8;

    font-weight: 300;
}

.scroll-link {
    display: flex;
    gap: 25px;

    align-items: center;

    color: var(--gold);

    font-size: 9px;
    letter-spacing: 3px;
}

.scroll-link span {
    font-size: 18px;

    transition: transform .3s ease;
}

.scroll-link:hover span {
    transform: translateY(5px);
}


/* -------------------------------- */
/* ROMAN MARK */
/* -------------------------------- */

.roman-mark {
    position: absolute;

    right: 8vw;
    top: 50%;

    transform: translateY(-50%);

    width: min(35vw, 500px);
    aspect-ratio: 1;

    opacity: .6;
}

.roman-circle {
    position: absolute;

    inset: 12%;

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

    border-radius: 50%;

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

.roman-circle::before,
.roman-circle::after {
    content: "";

    position: absolute;

    inset: 8%;

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

    border-radius: 50%;
}

.roman-circle::after {
    inset: 25%;

    border-color: rgba(185,154,97,.12);
}

.roman-circle span {
    font-family: "Cinzel", serif;

    font-size: clamp(45px, 6vw, 90px);

    color: rgba(185,154,97,.25);

    letter-spacing: -5px;
}

.roman-mark::before {
    content: "";

    position: absolute;

    left: 50%;
    top: -5%;

    width: 1px;
    height: 110%;

    background: var(--line);

    transform: rotate(45deg);
}

.roman-mark::after {
    content: "";

    position: absolute;

    left: 50%;
    top: -5%;

    width: 1px;
    height: 110%;

    background: var(--line);

    transform: rotate(-45deg);
}


/* -------------------------------- */
/* GENERIC SECTIONS */
/* -------------------------------- */

.section {
    position: relative;

    padding: 160px 10vw;

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

.section-number {
    position: absolute;

    left: 3vw;
    top: 165px;

    color: var(--gold);

    font-family: "Cinzel", serif;

    font-size: 10px;
}

.section-label {
    color: var(--muted);

    font-size: 9px;
    letter-spacing: 4px;
}


/* -------------------------------- */
/* PHILOSOPHY */
/* -------------------------------- */

.philosophy {
    display: grid;

    grid-template-columns: 1fr 2fr;

    column-gap: 8vw;
}

.philosophy-content {
    max-width: 850px;
}

.intro {
    margin-top: 70px;

    font-family: "Cinzel", serif;

    font-size: clamp(35px, 5vw, 70px);

    line-height: 1.05;

    font-weight: 400;

    color: var(--white);
}

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

    font-weight: 400;
}

.body-copy {
    max-width: 580px;

    margin-top: 55px;

    color: var(--muted);

    font-size: 14px;

    line-height: 2;

    font-weight: 300;
}


/* -------------------------------- */
/* CAPABILITIES */
/* -------------------------------- */

.capabilities {
    display: grid;

    grid-template-columns: 1fr 2fr;

    column-gap: 8vw;
}

.capability-list {
    margin-top: 60px;
}

.capability {
    position: relative;

    display: grid;

    grid-template-columns: 70px 1fr 30px;

    gap: 35px;

    padding: 42px 0;

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

    transition: padding .35s ease;
}

.capability:last-child {
    border-bottom: 1px solid var(--line-soft);
}

.capability:hover {
    padding-left: 15px;
}

.capability-index {
    color: var(--gold);

    font-family: "Cinzel", serif;

    font-size: 13px;
}

.capability h3 {
    font-family: "Cinzel", serif;

    font-size: 20px;

    font-weight: 500;

    letter-spacing: 1px;
}

.capability p {
    max-width: 430px;

    margin-top: 15px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.8;
}

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

    font-size: 20px;

    transition: transform .3s ease;
}

.capability:hover .capability-arrow {
    transform: translate(5px, -5px);
}


/* -------------------------------- */
/* MOTTO */
/* -------------------------------- */

.motto {
    min-height: 100vh;

    padding: 150px 10vw;

    display: flex;

    flex-direction: column;

    justify-content: center;

    background: var(--black-soft);

    overflow: hidden;
}

.motto-rule {
    width: 100%;

    height: 1px;

    background: var(--line);

    margin-bottom: 60px;
}

.motto-word {
    font-family: "Cinzel", serif;

    font-size: clamp(65px, 13vw, 190px);

    line-height: .82;

    letter-spacing: -5px;

    color: transparent;

    -webkit-text-stroke: 1px rgba(233,231,223,.35);

    transition:
        color .5s ease,
        -webkit-text-stroke .5s ease,
        transform .5s ease;
}

.motto-word:nth-child(3) {
    color: var(--gold);
    -webkit-text-stroke: 0;
}

.motto-word:hover {
    color: var(--gold);
    -webkit-text-stroke: 0;

    transform: translateX(20px);
}

.motto-translation {
    margin-top: 70px;

    color: var(--muted);

    font-size: 9px;

    letter-spacing: 5px;
}


/* -------------------------------- */
/* CLOSING */
/* -------------------------------- */

.closing {
    min-height: 90vh;

    padding: 150px 10vw;

    display: flex;

    flex-direction: column;

    justify-content: center;
}

.closing-label {
    color: var(--gold);

    font-size: 9px;

    letter-spacing: 5px;
}

.closing h2 {
    margin-top: 55px;

    font-family: "Cinzel", serif;

    font-size: clamp(60px, 11vw, 160px);

    line-height: .83;

    font-weight: 400;

    letter-spacing: -5px;
}

.closing h2 span {
    color: transparent;

    -webkit-text-stroke: 1px var(--gold);
}

.closing p {
    margin-top: 55px;

    color: var(--muted);

    font-size: 13px;
}

.contact-link {
    width: fit-content;

    margin-top: 45px;

    padding-bottom: 10px;

    color: var(--gold);

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

    font-size: 12px;

    letter-spacing: 1px;
}

.contact-link span {
    margin-left: 20px;

    transition: transform .3s ease;

    display: inline-block;
}

.contact-link:hover span {
    transform: translate(5px, -5px);
}


/* -------------------------------- */
/* FOOTER */
/* -------------------------------- */

footer {
    padding: 30px 6vw;

    display: flex;

    justify-content: space-between;

    color: #454540;

    font-size: 8px;

    letter-spacing: 3px;

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


/* -------------------------------- */
/* MOBILE */
/* -------------------------------- */

@media (max-width: 900px) {

    .header {
        height: 85px;

        padding: 0 25px;
    }

    .brand-name {
        font-size: 9px;
    }

    nav {
        display: none;
    }

    .hero {
        padding: 130px 25px 70px;

        min-height: 100svh;
    }

    .hero h1 {
        font-size: clamp(65px, 19vw, 110px);

        letter-spacing: -4px;
    }

    .hero h2 {
        font-size: clamp(38px, 11vw, 65px);
    }

    .roman-mark {
        width: 430px;

        right: -230px;

        opacity: .3;
    }

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

        gap: 40px;

        flex-direction: column;

        align-items: flex-start;
    }

    .section {
        padding: 100px 25px;
    }

    .section-number {
        position: static;

        margin-bottom: 20px;
    }

    .philosophy,
    .capabilities {
        display: block;
    }

    .intro {
        margin-top: 55px;
    }

    .capability {
        grid-template-columns: 35px 1fr 20px;

        gap: 15px;

        padding: 35px 0;
    }

    .capability h3 {
        font-size: 16px;
    }

    .motto {
        padding: 100px 25px;

        min-height: 80vh;
    }

    .motto-word {
        font-size: clamp(55px, 17vw, 100px);

        letter-spacing: -3px;
    }

    .closing {
        padding: 100px 25px;
    }

    .closing h2 {
        font-size: clamp(55px, 17vw, 100px);

        letter-spacing: -3px;
    }

    footer {
        padding: 25px;

        flex-direction: column;

        gap: 15px;
    }
}
