/* =========================================
   FIFTH FLOOR STUDIOS
   ========================================= */


/* =========================================
   VARIABLES
   ========================================= */

:root {

    --black: #070707;
    --black-soft: #0c0c0c;
    --charcoal: #151515;

    --gold: #d4af7c;
    --gold-light: #ead0a4;
    --gold-dark: #8d6d45;

    --bone: #ede6d8;
    --white: #f5f5f5;

    --gray-light: #b4b4b4;
    --gray: #8a8a8a;
    --gray-dark: #555555;

    --border: rgba(212, 175, 124, 0.15);

    --max-width: 1200px;
}


/* =========================================
   RESET
   ========================================= */

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

html {
    scroll-behavior: smooth;
}

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

    font-family:
        "Helvetica Neue",
        Arial,
        sans-serif;

    line-height: 1.6;
    overflow-x: hidden;
}

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

img {
    display: block;
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}


/* =========================================
   NAVIGATION
   ========================================= */

.site-header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    background:
        rgba(7, 7, 7, 0.82);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom:
        1px solid rgba(255,255,255,0.05);
}


.nav-container {
    width:
        min(92%, var(--max-width));

    height: 92px;

    margin: auto;

    display: flex;

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


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


.brand img {
    width: 150px;
    height: auto;
    object-fit: contain;
}


.desktop-nav {
    display: flex;
    align-items: center;
    gap: 38px;
}


.desktop-nav a {
    position: relative;

    padding: 10px 0;

    color: #999;

    font-size: 0.68rem;
    font-weight: 500;

    letter-spacing: 0.18em;
    text-transform: uppercase;

    transition:
        color 0.3s ease;
}


.desktop-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 3px;

    width: 0;
    height: 1px;

    background: var(--gold);

    transition:
        width 0.3s ease;
}


.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--gold);
}


.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    width: 100%;
}


.menu-button {
    display: none;

    width: 34px;

    padding: 5px;

    background: none;
    border: none;

    cursor: pointer;
}


.menu-button span {
    display: block;

    width: 24px;
    height: 1px;

    margin: 7px auto;

    background: var(--gold);

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}


.mobile-nav {
    display: none;
}


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

.hero {
    position: relative;

    min-height: 100vh;

    padding:
        150px 20px
        90px;

    display: flex;

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

    text-align: center;

    overflow: hidden;
}


.hero::before {
    content: "";

    position: absolute;

    inset: 0;

    background:

        radial-gradient(
            circle at 50% 42%,
            rgba(212,175,124,0.09),
            transparent 35%
        ),

        radial-gradient(
            circle at 50% 50%,
            #0d0b08,
            #070707 65%
        );

    pointer-events: none;
}


.hero-glow {
    position: absolute;

    top: 45%;
    left: 50%;

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

    width: 650px;
    height: 650px;

    border-radius: 50%;

    background:
        rgba(212,175,124,0.035);

    filter: blur(90px);

    pointer-events: none;
}


.hero-content {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 950px;
}


.hero-logo {
    width:
        min(550px, 80vw);

    height: auto;

    margin:
        0 auto 35px;

    object-fit: contain;
}


/* =========================================
   COMMON TYPOGRAPHY
   ========================================= */

.eyebrow {
    margin-bottom: 20px;

    color: var(--gold);

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

    letter-spacing: 0.34em;
    text-transform: uppercase;
}


.hero h1 {
    max-width: 950px;

    margin: auto;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

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

    font-weight: 400;
    line-height: 0.96;

    letter-spacing: -0.035em;
}


.hero h1 span {
    display: block;
    color: var(--gold);
}


.hero-description {
    max-width: 650px;

    margin:
        35px auto 0;

    color: #9a9a9a;

    font-size: 1rem;
    line-height: 1.9;
}


.hero-actions {
    margin-top: 42px;

    display: flex;

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

    gap: 15px;
}


/* =========================================
   BUTTONS
   ========================================= */

.button {
    display: inline-flex;

    min-height: 50px;

    padding:
        0 28px;

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

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

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

    letter-spacing: 0.17em;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        border-color 0.3s ease;
}


.button-primary {
    background: var(--gold);
    color: #080808;
}


.button-primary:hover {
    background:
        var(--gold-light);

    border-color:
        var(--gold-light);

    transform:
        translateY(-2px);
}


.button-secondary {
    background: transparent;
    color: var(--gold);
}


.button-secondary:hover {
    background:
        rgba(212,175,124,0.07);

    transform:
        translateY(-2px);
}


/* =========================================
   SCROLL INDICATOR
   ========================================= */

.scroll-indicator {
    position: absolute;

    z-index: 2;

    bottom: 25px;
    left: 50%;

    transform:
        translateX(-50%);

    display: flex;

    flex-direction: column;
    align-items: center;

    gap: 10px;

    color: #555;

    font-size: 0.5rem;
    letter-spacing: 0.28em;
}


.scroll-line {
    width: 1px;
    height: 35px;

    background:
        linear-gradient(
            var(--gold),
            transparent
        );
}


/* =========================================
   GENERAL SECTIONS
   ========================================= */

.section {
    padding:
        140px 0;
}


.section-container {
    width:
        min(90%, var(--max-width));

    margin:
        0 auto;
}


.narrow {
    max-width:
        850px;
}


.section-heading {
    max-width:
        850px;

    margin-bottom:
        65px;
}


.section-heading h2,
.studio-section h2,
.partnership-section h2,
.contact-cta h2 {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

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

    font-weight: 400;
    line-height: 1.05;

    letter-spacing: -0.025em;
}


.section-description {
    max-width:
        600px;

    margin-top:
        25px;

    color:
        #8f8f8f;

    line-height:
        1.8;
}


/* =========================================
   HOME CATALOG
   ========================================= */

.catalog-section {
    position: relative;

    background:
        var(--black-soft);

    border-top:
        1px solid
        rgba(255,255,255,0.04);

    border-bottom:
        1px solid
        rgba(255,255,255,0.04);
}


.catalog-grid {
    display: grid;

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

    gap: 25px;
}


.catalog-card {
    position: relative;

    min-height: 500px;

    padding: 28px;

    display: flex;

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

    background:

        radial-gradient(
            circle at center,
            #16130f,
            #0c0c0c 70%
        );

    border:
        1px solid
        rgba(212,175,124,0.12);

    overflow: hidden;

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}


.catalog-card:hover {
    transform:
        translateY(-5px);

    border-color:
        rgba(212,175,124,0.35);

    box-shadow:
        0 20px 50px
        rgba(0,0,0,0.35);
}


.catalog-card-top {
    display: flex;

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


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

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        1rem;
}


.catalog-type {
    color:
        #5f5f5f;

    font-size:
        0.55rem;

    letter-spacing:
        0.2em;
}


.catalog-logo {
    position: relative;

    width: 100%;
    min-height: 270px;

    display: flex;

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

    overflow: visible;
}


.catalog-logo img {
    width: 160%;

    max-width: none;

    height: auto;
    max-height: none;

    object-fit: contain;

    transition:
        transform 0.4s ease,
        filter 0.4s ease;

    filter:
        drop-shadow(
            0 12px 25px
            rgba(0,0,0,0.55)
        );
}


.catalog-card:hover
.catalog-logo img {
    transform:
        scale(1.035);

    filter:
        drop-shadow(
            0 16px 32px
            rgba(255,90,20,0.12)
        );
}


.catalog-card-bottom {
    position: relative;

    z-index: 2;

    display: flex;

    align-items:
        flex-end;

    justify-content:
        space-between;

    padding-top:
        20px;

    border-top:
        1px solid
        rgba(255,255,255,0.06);
}


.catalog-card-bottom h3 {
    margin-bottom:
        5px;

    color:
        var(--bone);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        1.5rem;

    font-weight: 400;

    letter-spacing:
        0.08em;
}


.catalog-card-bottom p {
    color:
        #666;

    font-size:
        0.65rem;

    letter-spacing:
        0.1em;
}


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

    font-size:
        1.4rem;

    transition:
        transform 0.3s ease;
}


.catalog-card:hover
.catalog-arrow {
    transform:
        translateX(5px);
}


.catalog-link-container {
    margin-top:
        45px;
}


/* =========================================
   TEXT LINKS
   ========================================= */

.text-link {
    display:
        inline-flex;

    align-items:
        center;

    color:
        var(--gold);

    font-size:
        0.67rem;

    font-weight:
        600;

    letter-spacing:
        0.16em;

    text-transform:
        uppercase;
}


.text-link span {
    display:
        inline-block;

    margin-left:
        10px;

    font-size:
        1rem;

    transition:
        transform 0.3s ease;
}


.text-link:hover span {
    transform:
        translateX(6px);
}


/* =========================================
   HOME STUDIO
   ========================================= */

.studio-section {
    position: relative;
    text-align: center;
}


.studio-section h2 {
    margin-bottom:
        35px;
}


.large-copy {
    max-width:
        760px;

    margin:
        0 auto 40px;

    color:
        #999;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        1.3rem;

    line-height:
        1.85;
}


/* =========================================
   HOME PARTNERSHIP
   ========================================= */

.partnership-section {
    padding:
        140px 0;

    background:
        #0b0b0b;

    border-top:
        1px solid
        rgba(255,255,255,0.04);
}


.partnership-container {
    display:
        grid;

    grid-template-columns:
        1.2fr 1fr;

    gap:
        100px;

    align-items:
        center;
}


.partnership-copy p {
    margin-bottom:
        35px;

    color:
        #929292;

    font-size:
        1rem;

    line-height:
        1.9;
}


/* =========================================
   STANDARD PAGE HERO
   ========================================= */

.page-hero {
    position: relative;

    min-height: 72vh;

    padding:
        180px 20px
        100px;

    display: flex;

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

    text-align: center;

    overflow: hidden;

    border-bottom:
        1px solid
        rgba(255,255,255,0.05);
}


.page-hero::before {
    content: "";

    position: absolute;

    inset: 0;

    background:

        radial-gradient(
            circle at 50% 40%,
            rgba(212,175,124,0.10),
            transparent 32%
        ),

        radial-gradient(
            circle at center,
            #0d0b08,
            #070707 68%
        );
}


.page-hero-glow {
    position: absolute;

    width: 600px;
    height: 600px;

    border-radius: 50%;

    background:
        rgba(212,175,124,0.035);

    filter:
        blur(100px);
}


.page-hero-content {
    position: relative;

    z-index: 2;

    max-width:
        900px;
}


.page-hero h1 {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

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

    font-weight: 400;

    line-height: 0.95;

    letter-spacing:
        -0.04em;
}


.page-hero-description {
    max-width:
        620px;

    margin:
        30px auto 0;

    color:
        #929292;

    font-size:
        1rem;

    line-height:
        1.9;
}


/* =========================================
   CATALOG PAGE
   ========================================= */

.catalog-count {
    margin-top:
        50px;

    display:
        inline-flex;

    align-items:
        center;

    gap:
        18px;

    padding:
        13px 20px;

    border:
        1px solid
        rgba(212,175,124,0.15);

    background:
        rgba(255,255,255,0.015);
}


.catalog-count-number {
    color:
        var(--gold);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        1.3rem;
}


.catalog-count-label {
    color:
        #666;

    font-size:
        0.55rem;

    font-weight:
        600;

    letter-spacing:
        0.22em;
}


.catalog-intro {
    padding:
        130px 0;

    background:
        #090909;
}


.catalog-intro-grid {
    display: grid;

    grid-template-columns:
        1.1fr 1fr;

    gap:
        120px;

    align-items:
        center;
}


.catalog-intro h2 {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

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

    font-weight:
        400;

    line-height:
        1.08;

    letter-spacing:
        -0.025em;
}


.catalog-intro-copy {
    padding-left:
        40px;

    border-left:
        1px solid
        rgba(212,175,124,0.2);
}


.catalog-intro-copy p {
    color:
        #929292;

    line-height:
        1.9;
}


.catalog-intro-copy p + p {
    margin-top:
        20px;
}


.full-catalog-section {
    padding:
        140px 0;

    background:
        var(--black-soft);

    border-top:
        1px solid
        rgba(255,255,255,0.04);

    border-bottom:
        1px solid
        rgba(255,255,255,0.04);
}


.catalog-section-header {
    margin-bottom:
        65px;

    display:
        flex;

    justify-content:
        space-between;

    align-items:
        flex-end;

    gap:
        30px;
}


.catalog-section-header h2 {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

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

    font-weight:
        400;

    line-height:
        1;
}


.catalog-total {
    text-align:
        right;
}


.catalog-total span {
    display: block;

    color:
        var(--gold);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        2.3rem;

    line-height:
        1;
}


.catalog-total p {
    margin-top:
        7px;

    color:
        #555;

    font-size:
        0.55rem;

    letter-spacing:
        0.25em;
}


.full-catalog-grid {
    display: grid;

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

    gap:
        30px;
}


.full-catalog-card {
    position: relative;

    min-height:
        700px;

    padding:
        35px;

    display:
        flex;

    flex-direction:
        column;

    background:

        radial-gradient(
            circle at 50% 40%,
            #19140f,
            #0a0a0a 65%
        );

    border:
        1px solid
        rgba(212,175,124,0.18);

    overflow:
        hidden;

    transition:
        border-color 0.4s ease,
        transform 0.4s ease,
        box-shadow 0.4s ease;
}


.full-catalog-card:hover {
    transform:
        translateY(-5px);

    border-color:
        rgba(212,175,124,0.38);

    box-shadow:
        0 25px 60px
        rgba(0,0,0,0.35);
}


.full-catalog-card-top {
    display:
        flex;

    align-items:
        flex-start;

    justify-content:
        space-between;

    gap:
        20px;
}


.catalog-id {
    display:
        flex;

    flex-direction:
        column;

    gap:
        3px;
}


.catalog-id-label {
    color:
        #555;

    font-size:
        0.5rem;

    letter-spacing:
        0.22em;
}


.catalog-id-number {
    color:
        var(--gold);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        1.4rem;
}


.catalog-status {
    padding:
        8px 12px;

    color:
        var(--gold);

    font-size:
        0.5rem;

    font-weight:
        600;

    letter-spacing:
        0.17em;

    border:
        1px solid
        rgba(212,175,124,0.18);
}


.full-catalog-logo {
    flex: 1;

    min-height:
        330px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    overflow:
        hidden;
}


.full-catalog-logo img {
    width:
        110%;

    max-width:
        none;

    height:
        auto;

    object-fit:
        contain;

    filter:
        drop-shadow(
            0 15px 35px
            rgba(0,0,0,0.55)
        );

    transition:
        transform 0.4s ease,
        filter 0.4s ease;
}


.full-catalog-card:hover
.full-catalog-logo img {
    transform:
        scale(1.025);

    filter:
        drop-shadow(
            0 18px 38px
            rgba(255,90,20,0.10)
        );
}


.full-catalog-info {
    display:
        grid;

    grid-template-columns:
        0.8fr 1.2fr;

    gap:
        40px;

    padding:
        30px 0;

    border-top:
        1px solid
        rgba(255,255,255,0.06);
}


.catalog-small-label {
    margin-bottom:
        8px;

    color:
        #555;

    font-size:
        0.5rem;

    letter-spacing:
        0.2em;
}


.full-catalog-title h3 {
    color:
        var(--bone);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        2.2rem;

    font-weight:
        400;

    letter-spacing:
        0.08em;
}


.full-catalog-description p {
    color:
        #8c8c8c;

    font-size:
        0.85rem;

    line-height:
        1.8;
}


.full-catalog-description p + p {
    margin-top:
        10px;
}


.full-catalog-meta {
    display:
        grid;

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

    padding-top:
        25px;

    border-top:
        1px solid
        rgba(255,255,255,0.06);
}


.full-catalog-meta > div {
    padding-right:
        15px;
}


.full-catalog-meta span {
    display:
        block;

    margin-bottom:
        6px;

    color:
        #4f4f4f;

    font-size:
        0.48rem;

    letter-spacing:
        0.2em;
}


.full-catalog-meta p {
    color:
        #8a8a8a;

    font-size:
        0.65rem;

    letter-spacing:
        0.12em;
}


.future-catalog-card {
    min-height:
        700px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    background:
        #090909;

    border:
        1px dashed
        rgba(212,175,124,0.10);
}


.future-catalog-content {
    width:
        100%;

    max-width:
        260px;

    text-align:
        center;
}


.future-number {
    display:
        block;

    color:
        rgba(212,175,124,0.22);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        4rem;
}


.future-line {
    width:
        50px;

    height:
        1px;

    margin:
        20px auto;

    background:
        rgba(212,175,124,0.15);
}


.future-catalog-content p {
    color:
        #555;

    font-size:
        0.62rem;

    font-weight:
        600;

    letter-spacing:
        0.28em;
}


.future-status {
    display:
        block;

    margin-top:
        12px;

    color:
        #363636;

    font-size:
        0.5rem;

    letter-spacing:
        0.2em;
}


.portfolio-philosophy {
    padding:
        150px 0;

    text-align:
        center;
}


.portfolio-philosophy h2 {
    margin-bottom:
        35px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

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

    font-weight:
        400;

    line-height:
        1.05;
}


.portfolio-philosophy p:not(.eyebrow) {
    max-width:
        700px;

    margin:
        auto;

    color:
        #909090;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        1.25rem;

    line-height:
        1.9;
}


/* =========================================
   PARTNERSHIPS PAGE
   ========================================= */

.partnerships-page-hero {
    min-height:
        88vh;
}


.partnerships-page-hero::after {
    content: "";

    position:
        absolute;

    left:
        50%;

    bottom:
        0;

    width:
        1px;

    height:
        70px;

    background:
        linear-gradient(
            transparent,
            rgba(212,175,124,0.45)
        );
}


.partnerships-hero-title span {
    color:
        var(--gold);
}


.partnership-hero-actions {
    margin-top:
        42px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        15px;
}


.partnership-intro {
    padding:
        140px 0;

    background:
        #090909;
}


.partnership-intro-grid {
    display:
        grid;

    grid-template-columns:
        1.1fr 1fr;

    gap:
        120px;

    align-items:
        center;
}


.partnership-intro-heading h2 {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

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

    font-weight:
        400;

    line-height:
        1.08;

    letter-spacing:
        -0.025em;
}


.partnership-intro-copy {
    padding-left:
        40px;

    border-left:
        1px solid
        rgba(212,175,124,0.2);
}


.partnership-intro-copy p {
    color:
        #929292;

    font-size:
        1rem;

    line-height:
        1.9;
}


.partnership-intro-copy p + p {
    margin-top:
        22px;
}


.opportunities-section {
    padding:
        150px 0;

    background:
        var(--black-soft);

    border-top:
        1px solid
        rgba(255,255,255,0.04);

    border-bottom:
        1px solid
        rgba(255,255,255,0.04);
}


.opportunities-heading {
    max-width:
        760px;

    margin-bottom:
        70px;
}


.opportunities-heading h2 {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

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

    font-weight:
        400;

    line-height:
        1.05;

    letter-spacing:
        -0.03em;
}


.opportunities-heading > p:not(.eyebrow) {
    max-width:
        560px;

    margin-top:
        25px;

    color:
        #858585;

    line-height:
        1.8;
}


.opportunities-grid {
    display:
        grid;

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

    border-top:
        1px solid
        rgba(212,175,124,0.12);

    border-left:
        1px solid
        rgba(212,175,124,0.12);
}


.opportunity-card {
    position:
        relative;

    min-height:
        330px;

    padding:
        38px;

    display:
        flex;

    flex-direction:
        column;

    justify-content:
        space-between;

    background:
        #0a0a0a;

    border-right:
        1px solid
        rgba(212,175,124,0.12);

    border-bottom:
        1px solid
        rgba(212,175,124,0.12);

    overflow:
        hidden;

    transition:
        background 0.35s ease;
}


.opportunity-card:hover {
    background:
        #0e0d0b;
}


.opportunity-number {
    color:
        rgba(212,175,124,0.38);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        1rem;
}


.opportunity-content {
    max-width:
        420px;
}


.opportunity-content h3 {
    margin-bottom:
        18px;

    color:
        var(--bone);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        2rem;

    font-weight:
        400;
}


.opportunity-content p {
    color:
        #858585;

    font-size:
        0.9rem;

    line-height:
        1.85;
}


.opportunity-line {
    position:
        absolute;

    left:
        0;

    bottom:
        0;

    width:
        0;

    height:
        1px;

    background:
        var(--gold);

    transition:
        width 0.45s ease;
}


.opportunity-card:hover
.opportunity-line {
    width:
        100%;
}


.regulated-section {
    padding:
        160px 0;

    background:
        #080808;
}


.regulated-grid {
    display:
        grid;

    grid-template-columns:
        0.25fr 1.05fr 1fr;

    gap:
        65px;

    align-items:
        start;
}


.regulated-marker {
    padding-top:
        7px;
}


.regulated-marker span {
    color:
        rgba(212,175,124,0.30);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        3.5rem;

    line-height:
        1;
}


.regulated-heading h2 {
    max-width:
        520px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

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

    font-weight:
        400;

    line-height:
        1.08;

    letter-spacing:
        -0.025em;
}


.regulated-copy {
    padding-left:
        35px;

    border-left:
        1px solid
        rgba(212,175,124,0.18);
}


.regulated-copy p {
    color:
        #8b8b8b;

    font-size:
        0.95rem;

    line-height:
        1.9;
}


.regulated-copy p + p {
    margin-top:
        24px;
}


.ip-philosophy-section {
    padding:
        150px 0;

    background:

        radial-gradient(
            circle at 50% 40%,
            rgba(212,175,124,0.045),
            transparent 35%
        ),

        #0b0b0b;

    border-top:
        1px solid
        rgba(255,255,255,0.04);

    border-bottom:
        1px solid
        rgba(255,255,255,0.04);
}


.ip-philosophy-header {
    max-width:
        850px;

    margin-bottom:
        75px;
}


.ip-philosophy-header h2 {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

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

    font-weight:
        400;

    line-height:
        1.05;

    letter-spacing:
        -0.03em;
}


.ip-principles {
    display:
        grid;

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

    gap:
        1px;

    background:
        rgba(212,175,124,0.12);

    border:
        1px solid
        rgba(212,175,124,0.12);
}


.ip-principle {
    min-height:
        300px;

    padding:
        35px;

    background:
        #0a0a0a;
}


.ip-principle > span {
    display:
        block;

    margin-bottom:
        70px;

    color:
        rgba(212,175,124,0.32);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        0.9rem;
}


.ip-principle h3 {
    margin-bottom:
        15px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        1.8rem;

    font-weight:
        400;
}


.ip-principle p {
    color:
        #7f7f7f;

    font-size:
        0.85rem;

    line-height:
        1.8;
}


.partnership-catalog-bridge {
    padding:
        135px 0;

    background:
        #080808;
}


.partnership-bridge-grid {
    display:
        grid;

    grid-template-columns:
        1.2fr 1fr;

    gap:
        100px;

    align-items:
        center;
}


.partnership-catalog-bridge h2 {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

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

    font-weight:
        400;

    line-height:
        1.05;
}


.partnership-bridge-copy p {
    max-width:
        480px;

    margin-bottom:
        30px;

    color:
        #898989;

    line-height:
        1.85;
}


.partnership-contact-cta {
    position:
        relative;

    padding:
        170px 20px;

    text-align:
        center;

    background:
        #090909;

    border-top:
        1px solid
        rgba(212,175,124,0.10);

    overflow:
        hidden;
}


.partnership-contact-glow {
    position:
        absolute;

    top:
        50%;

    left:
        50%;

    width:
        650px;

    height:
        650px;

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

    border-radius:
        50%;

    background:
        rgba(212,175,124,0.055);

    filter:
        blur(100px);

    pointer-events:
        none;
}


.partnership-contact-content {
    position:
        relative;

    z-index:
        2;
}


.partnership-contact-content h2 {
    margin-bottom:
        30px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            3.2rem,
            7vw,
            6rem
        );

    font-weight:
        400;

    line-height:
        1;

    letter-spacing:
        -0.035em;
}


.partnership-contact-content > p:not(.eyebrow) {
    max-width:
        620px;

    margin:
        0 auto 40px;

    color:
        #8e8e8e;

    line-height:
        1.9;
}


/* =========================================
   STUDIO PAGE
   ========================================= */

.studio-page-hero {
    min-height:
        88vh;
}


.studio-page-hero::after {
    content: "";

    position:
        absolute;

    left:
        50%;

    bottom:
        0;

    width:
        1px;

    height:
        70px;

    background:
        linear-gradient(
            transparent,
            rgba(212,175,124,0.45)
        );
}


.studio-hero-title span {
    color:
        var(--gold);
}


.studio-hero-marker {
    margin-top:
        50px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        16px;

    color:
        #555;

    font-size:
        0.52rem;

    font-weight:
        600;

    letter-spacing:
        0.22em;
}


.studio-hero-marker div {
    width:
        40px;

    height:
        1px;

    background:
        rgba(212,175,124,0.35);
}


.studio-section-number {
    display:
        flex;

    align-items:
        center;

    gap:
        14px;
}


.studio-section-number span {
    color:
        var(--gold);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        1rem;
}


.studio-section-number p {
    color:
        #555;

    font-size:
        0.52rem;

    font-weight:
        600;

    letter-spacing:
        0.22em;
}


.centered-number {
    justify-content:
        center;

    margin-bottom:
        45px;
}


.studio-story-section {
    padding:
        155px 0;

    background:
        #090909;
}


.studio-story-grid {
    display:
        grid;

    grid-template-columns:
        0.3fr 1.05fr 0.9fr;

    gap:
        65px;

    align-items:
        start;
}


.studio-story-heading h2 {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

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

    font-weight:
        400;

    line-height:
        1.07;

    letter-spacing:
        -0.025em;
}


.studio-story-copy {
    padding-left:
        35px;

    border-left:
        1px solid
        rgba(212,175,124,0.18);
}


.studio-story-copy p {
    color:
        #909090;

    font-size:
        0.95rem;

    line-height:
        1.9;
}


.studio-story-copy p + p {
    margin-top:
        22px;
}


.studio-approach-section {
    padding:
        155px 0;

    background:
        var(--black-soft);

    border-top:
        1px solid
        rgba(255,255,255,0.04);

    border-bottom:
        1px solid
        rgba(255,255,255,0.04);
}


.studio-approach-header {
    display:
        grid;

    grid-template-columns:
        0.35fr 1fr;

    gap:
        60px;

    margin-bottom:
        90px;
}


.studio-approach-header h2 {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

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

    font-weight:
        400;

    line-height:
        1;
}


.approach-track {
    position:
        relative;

    display:
        grid;

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

    gap:
        0;
}


.approach-track::before {
    content: "";

    position:
        absolute;

    top:
        50px;

    left:
        5%;

    width:
        90%;

    height:
        1px;

    background:
        rgba(212,175,124,0.16);
}


.approach-step {
    position:
        relative;

    z-index:
        2;

    padding:
        0 22px;

    text-align:
        center;
}


.approach-number {
    display:
        block;

    margin-bottom:
        18px;

    color:
        #4c4c4c;

    font-size:
        0.52rem;

    letter-spacing:
        0.16em;
}


.approach-dot {
    width:
        9px;

    height:
        9px;

    margin:
        0 auto 35px;

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

    border-radius:
        50%;

    background:
        var(--black-soft);

    box-shadow:
        0 0 0 7px
        var(--black-soft);
}


.approach-step h3 {
    margin-bottom:
        15px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        1.4rem;

    font-weight:
        400;
}


.approach-step p {
    color:
        #767676;

    font-size:
        0.78rem;

    line-height:
        1.8;
}


.studio-philosophy-section {
    padding:
        155px 0;

    background:
        #080808;
}


.studio-philosophy-header {
    display:
        grid;

    grid-template-columns:
        0.35fr 1fr;

    gap:
        60px;

    margin-bottom:
        75px;
}


.studio-philosophy-title {
    max-width:
        800px;
}


.studio-philosophy-title h2 {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

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

    font-weight:
        400;

    line-height:
        1.04;

    letter-spacing:
        -0.03em;
}


.philosophy-grid {
    display:
        grid;

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

    gap:
        1px;

    background:
        rgba(212,175,124,0.12);

    border:
        1px solid
        rgba(212,175,124,0.12);
}


.philosophy-card {
    min-height:
        330px;

    padding:
        38px;

    background:
        #0b0b0b;

    transition:
        background 0.35s ease;
}


.philosophy-card:hover {
    background:
        #0f0e0c;
}


.philosophy-card > span {
    display:
        block;

    margin-bottom:
        75px;

    color:
        rgba(212,175,124,0.35);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        1rem;
}


.philosophy-card h3 {
    margin-bottom:
        16px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        1.9rem;

    font-weight:
        400;
}


.philosophy-card p {
    color:
        #7f7f7f;

    font-size:
        0.85rem;

    line-height:
        1.85;
}


.studio-origin-section {
    padding:
        160px 0;

    background:

        radial-gradient(
            circle at 75% 50%,
            rgba(170,65,20,0.07),
            transparent 30%
        ),

        #0b0b0b;

    border-top:
        1px solid
        rgba(255,255,255,0.04);

    border-bottom:
        1px solid
        rgba(255,255,255,0.04);

    overflow:
        hidden;
}


.studio-origin-grid {
    display:
        grid;

    grid-template-columns:
        0.25fr 0.9fr 1.1fr;

    gap:
        60px;

    align-items:
        center;
}


.studio-origin-number span {
    color:
        rgba(212,175,124,0.18);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

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

    writing-mode:
        vertical-rl;

    transform:
        rotate(180deg);
}


.studio-origin-content
.studio-section-number {
    margin-bottom:
        45px;
}


.studio-origin-content h2 {
    margin-bottom:
        30px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

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

    font-weight:
        400;

    line-height:
        1.05;

    letter-spacing:
        -0.025em;
}


.studio-origin-copy {
    max-width:
        470px;

    margin-bottom:
        35px;

    color:
        #898989;

    line-height:
        1.9;
}


.studio-origin-logo {
    min-height:
        430px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;
}


.studio-origin-logo img {
    width:
        120%;

    max-width:
        none;

    height:
        auto;

    object-fit:
        contain;

    filter:
        drop-shadow(
            0 20px 40px
            rgba(0,0,0,0.55)
        );
}


.studio-future-section {
    position:
        relative;

    padding:
        180px 20px;

    text-align:
        center;

    background:
        #080808;

    overflow:
        hidden;
}


.studio-future-glow {
    position:
        absolute;

    top:
        50%;

    left:
        50%;

    width:
        700px;

    height:
        700px;

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

    border-radius:
        50%;

    background:
        rgba(212,175,124,0.05);

    filter:
        blur(110px);

    pointer-events:
        none;
}


.studio-future-container {
    position:
        relative;

    z-index:
        2;
}


.studio-future-container h2 {
    max-width:
        900px;

    margin:
        0 auto 35px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            3.5rem,
            7vw,
            6.5rem
        );

    font-weight:
        400;

    line-height:
        1;

    letter-spacing:
        -0.035em;
}


.studio-future-copy {
    max-width:
        650px;

    margin:
        0 auto;

    color:
        #8d8d8d;

    line-height:
        1.9;
}


.studio-future-actions {
    margin-top:
        45px;

    display:
        flex;

    justify-content:
        center;

    gap:
        15px;
}


/* =========================================
   CONTACT PAGE HERO
   ========================================= */

.contact-page-hero {
    min-height:
        78vh;
}


.contact-page-hero::after {
    content: "";

    position:
        absolute;

    left:
        50%;

    bottom:
        0;

    width:
        1px;

    height:
        70px;

    background:
        linear-gradient(
            transparent,
            rgba(212,175,124,0.45)
        );
}


.contact-hero-title {
    color:
        var(--bone);
}


.contact-hero-marker {
    margin-top:
        48px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        16px;

    color:
        #555;

    font-size:
        0.52rem;

    font-weight:
        600;

    letter-spacing:
        0.22em;
}


.contact-hero-marker div {
    width:
        45px;

    height:
        1px;

    background:
        rgba(212,175,124,0.35);
}


/* =========================================
   CONTACT MAIN SECTION
   ========================================= */

.contact-main-section {
    padding:
        150px 0;

    background:
        #090909;
}


.contact-main-grid {
    display:
        grid;

    grid-template-columns:
        0.85fr 1.15fr;

    gap:
        100px;

    align-items:
        start;
}


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

.contact-information {
    position:
        sticky;

    top:
        140px;
}


.contact-information h2 {
    max-width:
        500px;

    margin-bottom:
        30px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

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

    font-weight:
        400;

    line-height:
        1.02;

    letter-spacing:
        -0.03em;
}


.contact-intro-copy {
    max-width:
        510px;

    color:
        #8e8e8e;

    font-size:
        0.95rem;

    line-height:
        1.9;
}


/* CONTACT CATEGORIES */

.contact-categories {
    margin-top:
        50px;

    border-top:
        1px solid
        rgba(212,175,124,0.12);
}


.contact-category {
    display:
        grid;

    grid-template-columns:
        55px 1fr;

    gap:
        10px;

    padding:
        18px 0;

    border-bottom:
        1px solid
        rgba(212,175,124,0.10);
}


.contact-category span {
    color:
        rgba(212,175,124,0.42);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        0.75rem;
}


.contact-category p {
    color:
        #888;

    font-size:
        0.75rem;

    letter-spacing:
        0.08em;

    text-transform:
        uppercase;
}


/* DIRECT EMAIL */

.direct-contact {
    margin-top:
        55px;

    padding-top:
        30px;

    border-top:
        1px solid
        rgba(255,255,255,0.06);
}


.contact-small-label {
    margin-bottom:
        12px;

    color:
        #555;

    font-size:
        0.52rem;

    font-weight:
        600;

    letter-spacing:
        0.22em;
}


.direct-email {
    position:
        relative;

    display:
        inline-block;

    color:
        var(--gold);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            1.15rem,
            2vw,
            1.55rem
        );

    word-break:
        break-word;
}


.direct-email::after {
    content: "";

    position:
        absolute;

    left:
        0;

    bottom:
        -4px;

    width:
        0;

    height:
        1px;

    background:
        var(--gold);

    transition:
        width 0.3s ease;
}


.direct-email:hover::after {
    width:
        100%;
}


.email-note {
    margin-top:
        14px;

    color:
        #555;

    font-size:
        0.7rem;
}


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

.contact-form-container {
    border:
        1px solid
        rgba(212,175,124,0.14);

    background:

        radial-gradient(
            circle at 50% 20%,
            rgba(212,175,124,0.035),
            transparent 35%
        ),

        #0b0b0b;
}


.contact-form-header {
    min-height:
        65px;

    padding:
        0 30px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        20px;

    border-bottom:
        1px solid
        rgba(212,175,124,0.12);

    color:
        #555;

    font-size:
        0.5rem;

    font-weight:
        600;

    letter-spacing:
        0.2em;
}


.contact-form {
    padding:
        38px;
}


.form-group {
    margin-bottom:
        30px;
}


.form-group label {
    display:
        block;

    margin-bottom:
        10px;

    color:
        #777;

    font-size:
        0.52rem;

    font-weight:
        600;

    letter-spacing:
        0.2em;
}


.form-group input,
.form-group select,
.form-group textarea {
    width:
        100%;

    padding:
        15px 0;

    color:
        var(--bone);

    background:
        transparent;

    border:
        none;

    border-bottom:
        1px solid
        rgba(255,255,255,0.12);

    border-radius:
        0;

    outline:
        none;

    font-size:
        0.95rem;

    transition:
        border-color 0.3s ease;
}


.form-group input::placeholder,
.form-group textarea::placeholder {
    color:
        #454545;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color:
        var(--gold);
}


.form-group textarea {
    min-height:
        150px;

    resize:
        vertical;
}


.form-group select {
    color:
        #777;

    cursor:
        pointer;
}


.form-group select:valid {
    color:
        var(--bone);
}


.form-group select option {
    color:
        var(--bone);

    background:
        #101010;
}


/* =========================================
   CONFIDENTIAL NOTICE
   ========================================= */

.submission-notice {
    margin:
        10px 0 35px;

    padding:
        20px;

    border-left:
        1px solid
        rgba(212,175,124,0.4);

    background:
        rgba(212,175,124,0.025);
}


.submission-notice span {
    display:
        block;

    margin-bottom:
        8px;

    color:
        var(--gold);

    font-size:
        0.5rem;

    font-weight:
        600;

    letter-spacing:
        0.2em;
}


.submission-notice p {
    color:
        #707070;

    font-size:
        0.72rem;

    line-height:
        1.75;
}


.contact-submit {
    width:
        100%;

    border-radius:
        0;
}


.form-status-note {
    max-width:
        430px;

    margin:
        18px auto 0;

    color:
        #484848;

    font-size:
        0.65rem;

    line-height:
        1.7;

    text-align:
        center;
}


/* =========================================
   CONTACT PARTNERSHIP BRIDGE
   ========================================= */

.contact-partnership-bridge {
    padding:
        135px 0;

    background:
        var(--black-soft);

    border-top:
        1px solid
        rgba(255,255,255,0.04);

    border-bottom:
        1px solid
        rgba(255,255,255,0.04);
}


.contact-bridge-grid {
    display:
        grid;

    grid-template-columns:
        1.2fr 1fr;

    gap:
        100px;

    align-items:
        center;
}


.contact-partnership-bridge h2 {
    max-width:
        650px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

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

    font-weight:
        400;

    line-height:
        1.05;

    letter-spacing:
        -0.025em;
}


.contact-bridge-copy p {
    max-width:
        500px;

    margin-bottom:
        30px;

    color:
        #898989;

    line-height:
        1.85;
}


/* =========================================
   CONTACT FINAL BRAND STATEMENT
   ========================================= */

.contact-final-section {
    position:
        relative;

    padding:
        150px 20px;

    background:
        #080808;

    text-align:
        center;

    overflow:
        hidden;
}


.contact-final-glow {
    position:
        absolute;

    top:
        50%;

    left:
        50%;

    width:
        600px;

    height:
        600px;

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

    border-radius:
        50%;

    background:
        rgba(212,175,124,0.045);

    filter:
        blur(100px);

    pointer-events:
        none;
}


.contact-final-content {
    position:
        relative;

    z-index:
        2;
}


.contact-final-content img {
    width:
        min(360px, 75vw);

    margin:
        0 auto 30px;
}


.contact-final-content p {
    color:
        #747474;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        1.1rem;

    line-height:
        1.7;
}


/* =========================================
   GENERAL CONTACT CTA
   ========================================= */

.contact-cta {
    position:
        relative;

    padding:
        150px 20px;

    text-align:
        center;

    background:

        radial-gradient(
            circle at center,
            rgba(212,175,124,0.09),
            transparent 40%
        ),

        #080808;

    border-top:
        1px solid
        rgba(212,175,124,0.1);
}


.contact-cta h2 {
    margin-bottom:
        25px;
}


.contact-cta p:not(.eyebrow) {
    margin-bottom:
        35px;

    color:
        #8e8e8e;
}


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

footer {
    padding:
        40px 0;

    background:
        #060606;

    border-top:
        1px solid
        rgba(255,255,255,0.05);
}


.footer-container {
    width:
        min(90%, var(--max-width));

    margin:
        auto;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        30px;
}


.footer-brand img {
    width:
        125px;

    height:
        auto;

    opacity:
        0.65;
}


footer p {
    color:
        #4f4f4f;

    font-size:
        0.65rem;

    letter-spacing:
        0.04em;
}


/* =========================================
   TABLET
   ========================================= */

@media
(max-width: 900px) {

    .desktop-nav {
        display: none;
    }


    .menu-button {
        display: block;
    }


    .mobile-nav.open {
        display: flex;

        flex-direction: column;

        padding:
            20px 5%
            35px;

        gap:
            22px;

        background:
            #080808;

        border-top:
            1px solid
            rgba(255,255,255,0.04);
    }


    .mobile-nav a {
        color:
            #999;

        font-size:
            0.7rem;

        letter-spacing:
            0.17em;

        text-transform:
            uppercase;
    }


    .catalog-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .partnership-container {
        grid-template-columns:
            1fr;

        gap:
            45px;
    }


    .catalog-intro-grid,
    .partnership-intro-grid {
        grid-template-columns:
            1fr;

        gap:
            50px;
    }


    .catalog-intro-copy,
    .partnership-intro-copy {
        padding-left:
            25px;
    }


    .full-catalog-grid {
        grid-template-columns:
            1fr;
    }


    .future-catalog-card {
        min-height:
            400px;
    }


    .regulated-grid {
        grid-template-columns:
            0.2fr 1fr;

        gap:
            40px;
    }


    .regulated-copy {
        grid-column:
            2;

        padding-left:
            25px;
    }


    .ip-principles {
        grid-template-columns:
            1fr;
    }


    .ip-principle {
        min-height:
            auto;
    }


    .ip-principle > span {
        margin-bottom:
            40px;
    }


    .partnership-bridge-grid {
        grid-template-columns:
            1fr;

        gap:
            45px;
    }


    /* STUDIO */

    .studio-story-grid {
        grid-template-columns:
            0.25fr 1fr;

        gap:
            45px;
    }


    .studio-story-copy {
        grid-column:
            2;

        padding-left:
            25px;
    }


    .studio-approach-header,
    .studio-philosophy-header {
        grid-template-columns:
            1fr;

        gap:
            35px;
    }


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

        gap:
            0;
    }


    .approach-track::before {
        top:
            0;

        left:
            4px;

        width:
            1px;

        height:
            100%;
    }


    .approach-step {
        padding:
            0 0 45px 40px;

        text-align:
            left;
    }


    .approach-number {
        margin-bottom:
            8px;
    }


    .approach-dot {
        position:
            absolute;

        top:
            6px;

        left:
            0;

        margin:
            0;
    }


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


    .philosophy-card {
        min-height:
            auto;
    }


    .philosophy-card > span {
        margin-bottom:
            40px;
    }


    .studio-origin-grid {
        grid-template-columns:
            0.2fr 1fr;

        gap:
            35px;
    }


    .studio-origin-logo {
        grid-column:
            2;

        min-height:
            330px;
    }


    .studio-origin-logo img {
        width:
            100%;
    }


    /* CONTACT */

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

        gap:
            70px;
    }


    .contact-information {
        position:
            static;
    }


    .contact-information h2 {
        max-width:
            650px;
    }


    .contact-intro-copy {
        max-width:
            650px;
    }


    .contact-bridge-grid {
        grid-template-columns:
            1fr;

        gap:
            45px;
    }

}


/* =========================================
   MOBILE
   ========================================= */

@media
(max-width: 650px) {

    .nav-container {
        height:
            78px;
    }


    .brand img {
        width:
            120px;
    }


    .hero {
        padding:
            125px 20px
            80px;
    }


    .hero-logo {
        width:
            min(440px, 92vw);

        margin-bottom:
            25px;
    }


    .hero-actions,
    .partnership-hero-actions,
    .studio-future-actions {
        flex-direction:
            column;

        width:
            100%;
    }


    .hero-actions .button,
    .partnership-hero-actions .button,
    .studio-future-actions .button {
        width:
            min(100%, 300px);

        margin-left:
            auto;

        margin-right:
            auto;
    }


    .section {
        padding:
            100px 0;
    }


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


    .catalog-card {
        min-height:
            430px;
    }


    .catalog-logo {
        min-height:
            220px;
    }


    .catalog-logo img {
        width:
            145%;
    }


    .partnership-section {
        padding:
            100px 0;
    }


    /* PAGE HERO */

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

        padding:
            140px 20px
            80px;
    }


    /* CATALOG */

    .catalog-count {
        margin-top:
            35px;
    }


    .catalog-intro {
        padding:
            90px 0;
    }


    .catalog-intro-copy {
        padding-left:
            20px;
    }


    .full-catalog-section {
        padding:
            100px 0;
    }


    .catalog-section-header {
        align-items:
            flex-start;
    }


    .catalog-total {
        text-align:
            left;
    }


    .full-catalog-card {
        min-height:
            600px;

        padding:
            25px;
    }


    .full-catalog-logo {
        min-height:
            270px;
    }


    .full-catalog-logo img {
        width:
            125%;
    }


    .full-catalog-info {
        grid-template-columns:
            1fr;

        gap:
            20px;
    }


    .full-catalog-meta {
        gap:
            10px;
    }


    .future-catalog-card {
        min-height:
            320px;
    }


    .portfolio-philosophy {
        padding:
            110px 0;
    }


    /* PARTNERSHIPS */

    .partnerships-page-hero {
        min-height:
            78vh;
    }


    .partnership-intro {
        padding:
            100px 0;
    }


    .partnership-intro-copy {
        padding-left:
            20px;
    }


    .opportunities-section {
        padding:
            105px 0;
    }


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


    .opportunity-card {
        min-height:
            290px;

        padding:
            30px;
    }


    .regulated-section {
        padding:
            110px 0;
    }


    .regulated-grid {
        grid-template-columns:
            1fr;

        gap:
            30px;
    }


    .regulated-copy {
        grid-column:
            auto;

        padding-left:
            20px;
    }


    .regulated-marker span {
        font-size:
            2.8rem;
    }


    .ip-philosophy-section {
        padding:
            105px 0;
    }


    .ip-philosophy-header {
        margin-bottom:
            50px;
    }


    .partnership-catalog-bridge {
        padding:
            100px 0;
    }


    .partnership-contact-cta {
        padding:
            120px 20px;
    }


    /* STUDIO */

    .studio-page-hero {
        min-height:
            78vh;
    }


    .studio-story-section {
        padding:
            105px 0;
    }


    .studio-story-grid {
        grid-template-columns:
            1fr;

        gap:
            35px;
    }


    .studio-story-copy {
        grid-column:
            auto;

        padding-left:
            20px;
    }


    .studio-approach-section {
        padding:
            105px 0;
    }


    .studio-approach-header {
        margin-bottom:
            65px;
    }


    .studio-philosophy-section {
        padding:
            105px 0;
    }


    .studio-philosophy-header {
        margin-bottom:
            50px;
    }


    .philosophy-card {
        padding:
            30px;
    }


    .studio-origin-section {
        padding:
            105px 0;
    }


    .studio-origin-grid {
        grid-template-columns:
            1fr;

        gap:
            35px;
    }


    .studio-origin-number {
        display:
            none;
    }


    .studio-origin-logo {
        grid-column:
            auto;

        min-height:
            260px;
    }


    .studio-origin-logo img {
        width:
            125%;
    }


    .studio-future-section {
        padding:
            125px 20px;
    }


    /* CONTACT */

    .contact-page-hero {
        min-height:
            72vh;
    }


    .contact-main-section {
        padding:
            100px 0;
    }


    .contact-main-grid {
        gap:
            60px;
    }


    .contact-categories {
        margin-top:
            40px;
    }


    .direct-contact {
        margin-top:
            45px;
    }


    .contact-form-header {
        padding:
            0 20px;

        font-size:
            0.44rem;
    }


    .contact-form {
        padding:
            28px 22px;
    }


    .contact-partnership-bridge {
        padding:
            100px 0;
    }


    .contact-final-section {
        padding:
            110px 20px;
    }


    /* GENERAL CTA */

    .contact-cta {
        padding:
            110px 20px;
    }


    /* FOOTER */

    .footer-container {
        flex-direction:
            column;

        text-align:
            center;
    }

}

/* =========================================
   FIFTH FLOOR STUDIOS
   PRODUCTION MOTION SYSTEM
   ========================================= */


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

.site-header {

    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


.nav-container {

    transition:
        height 0.35s ease;
}


.brand img {

    transition:
        width 0.35s ease,
        opacity 0.35s ease,
        transform 0.35s ease;
}


.site-header-scrolled {

    background:
        rgba(7, 7, 7, 0.94);

    border-bottom-color:
        rgba(212, 175, 124, 0.08);

    box-shadow:
        0 10px 35px
        rgba(0, 0, 0, 0.18);
}


.site-header-scrolled
.nav-container {

    height:
        76px;
}


.site-header-scrolled
.brand img {

    width:
        135px;
}


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

.js-enabled
.hero-content,

.js-enabled
.page-hero-content {

    opacity:
        0;

    transform:
        translateY(22px);

    transition:
        opacity 1s
        cubic-bezier(0.22, 1, 0.36, 1),

        transform 1s
        cubic-bezier(0.22, 1, 0.36, 1);
}


.js-enabled
.hero-content.hero-visible,

.js-enabled
.page-hero-content.hero-visible {

    opacity:
        1;

    transform:
        translateY(0);
}


/* =========================================
   GENERAL SCROLL REVEAL
   ========================================= */

.js-enabled
.reveal-element {

    opacity:
        0;

    transform:
        translateY(28px);

    transition:
        opacity 0.8s
        cubic-bezier(0.22, 1, 0.36, 1),

        transform 0.8s
        cubic-bezier(0.22, 1, 0.36, 1);

    transition-delay:
        var(--reveal-delay, 0ms);
}


.js-enabled
.reveal-element.revealed {

    opacity:
        1;

    transform:
        translateY(0);
}


/* =========================================
   BUTTON MICRO-INTERACTIONS
   ========================================= */

.button {

    position:
        relative;

    overflow:
        hidden;

    isolation:
        isolate;
}


.button::before {

    content:
        "";

    position:
        absolute;

    inset:
        0;

    z-index:
        -1;

    background:
        rgba(255, 255, 255, 0.12);

    transform:
        translateX(-102%);

    transition:
        transform 0.45s
        cubic-bezier(0.22, 1, 0.36, 1);
}


.button:hover::before {

    transform:
        translateX(0);
}


.button:active {

    transform:
        translateY(0)
        scale(0.985);
}


/* =========================================
   TEXT LINK MOTION
   ========================================= */

.text-link {

    transition:
        color 0.3s ease;
}


.text-link:hover {

    color:
        var(--gold-light);
}


/* =========================================
   CARD DEPTH
   ========================================= */

.opportunity-card,
.philosophy-card,
.ip-principle,
.full-catalog-card,
.catalog-card {

    will-change:
        transform;
}


.opportunity-card,
.philosophy-card,
.ip-principle {

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease;
}


.opportunity-card:hover,
.philosophy-card:hover,
.ip-principle:hover {

    transform:
        translateY(-4px);
}


/* =========================================
   GOLD DETAIL ANIMATION
   ========================================= */

.scroll-line {

    transform-origin:
        top;

    animation:
        fifth-floor-line-pulse
        2.8s ease-in-out
        infinite;
}


@keyframes fifth-floor-line-pulse {

    0%,
    100% {

        opacity:
            0.35;

        transform:
            scaleY(0.7);
    }


    50% {

        opacity:
            1;

        transform:
            scaleY(1);
    }

}


/* =========================================
   MOBILE MENU
   ========================================= */

@media
(max-width: 900px) {

    .menu-button {

        position:
            relative;

        z-index:
            1002;
    }


    .menu-button span {

        transform-origin:
            center;
    }


    .menu-button.active
    span:first-child {

        transform:
            translateY(4px)
            rotate(45deg);
    }


    .menu-button.active
    span:last-child {

        transform:
            translateY(-4px)
            rotate(-45deg);
    }


    .mobile-nav {

        display:
            flex;

        position:
            absolute;

        top:
            100%;

        left:
            0;

        width:
            100%;

        max-height:
            0;

        padding:
            0 5%;

        flex-direction:
            column;

        gap:
            0;

        overflow:
            hidden;

        visibility:
            hidden;

        opacity:
            0;

        background:
            rgba(8, 8, 8, 0.98);

        border-top:
            1px solid
            rgba(255, 255, 255, 0.04);

        transform:
            translateY(-8px);

        transition:
            max-height 0.45s
            cubic-bezier(0.22, 1, 0.36, 1),

            padding 0.45s
            cubic-bezier(0.22, 1, 0.36, 1),

            opacity 0.3s ease,

            transform 0.45s
            cubic-bezier(0.22, 1, 0.36, 1),

            visibility 0.45s;
    }


    .mobile-nav.open {

        display:
            flex;

        max-height:
            430px;

        padding:
            18px 5%
            30px;

        gap:
            0;

        visibility:
            visible;

        opacity:
            1;

        transform:
            translateY(0);
    }


    .mobile-nav a {

        position:
            relative;

        padding:
            15px 0;

        border-bottom:
            1px solid
            rgba(255, 255, 255, 0.045);

        opacity:
            0;

        transform:
            translateY(-8px);

        transition:
            color 0.3s ease,
            opacity 0.35s ease,
            transform 0.35s ease;
    }


    .mobile-nav a:last-child {

        border-bottom:
            none;
    }


    .mobile-nav.open a {

        opacity:
            1;

        transform:
            translateY(0);
    }


    .mobile-nav.open
    a:nth-child(1) {

        transition-delay:
            70ms;
    }


    .mobile-nav.open
    a:nth-child(2) {

        transition-delay:
            110ms;
    }


    .mobile-nav.open
    a:nth-child(3) {

        transition-delay:
            150ms;
    }


    .mobile-nav.open
    a:nth-child(4) {

        transition-delay:
            190ms;
    }


    .mobile-nav.open
    a:nth-child(5) {

        transition-delay:
            230ms;
    }


    .mobile-nav a:hover {

        color:
            var(--gold);
    }


    .site-header-scrolled
    .nav-container {

        height:
            70px;
    }


    .site-header-scrolled
    .brand img {

        width:
            112px;
    }

}


/* =========================================
   CONTACT FORM INTERACTION
   ========================================= */

.form-group {

    position:
        relative;
}


.form-group label {

    transition:
        color 0.3s ease;
}


.form-group:focus-within
label {

    color:
        var(--gold);
}


.contact-submit {

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        opacity 0.3s ease;
}


.contact-submit.submission-pending {

    opacity:
        0.7;

    transform:
        scale(0.99);
}


.form-status-note {

    transition:
        color 0.3s ease,
        opacity 0.3s ease;
}


.form-status-note.form-status-active {

    color:
        var(--gold-dark);
}


/* =========================================
   KEYBOARD ACCESSIBILITY
   ========================================= */

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {

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

    outline-offset:
        5px;
}


/* =========================================
   REDUCED MOTION
   ========================================= */

@media
(prefers-reduced-motion: reduce) {

    html {

        scroll-behavior:
            auto;
    }


    *,
    *::before,
    *::after {

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        scroll-behavior:
            auto !important;

        transition-duration:
            0.01ms !important;

        transition-delay:
            0ms !important;
    }


    .js-enabled
    .hero-content,

    .js-enabled
    .page-hero-content,

    .js-enabled
    .reveal-element {

        opacity:
            1;

        transform:
            none;
    }

}