@font-face {
    font-family: "Albra";
    src: url("../fonts/AlbraTRIAL-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Slightly airier tracking for the homepage display title. */
.tw-title {
    letter-spacing: -.015em !important;
}

.tw-eyebrow:has(+ .tw-title) {
    margin-bottom: 0 !important;
}

.tw-eyebrow + .tw-title {
    margin-top: 16px !important;
}

/* Capitalise the first letter of every word in headlines. */
h1,
h2,
h3,
h4 {
    text-transform: capitalize;
}

@font-face {
    font-family: "Albra";
    src: url("../fonts/AlbraTRIAL-Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Acumin";
    src: url("../fonts/Acumin Variable Concept.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg: #0d0d0d;
    --white: #f4f0e8;
    --muted: rgba(244, 240, 232, .64);
    --line: rgba(244, 240, 232, .20);
    --gold: #a8603a;
    --serif: "Albra", Georgia, serif;
    --sans: "Acumin", Arial, sans-serif;
    --ease: cubic-bezier(.22, 1, .36, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    background: var(--bg);
    color-scheme: dark;
}

body {
    margin: 0;
    overflow: hidden;
    background: var(--bg);
    color: var(--white);
    font-family: var(--sans);
    -webkit-font-smoothing: antialiased;
}

/* Brand typography: display titles use Albra; copy and UI text use Acumin. */
h1,
h2,
h3,
h4,
[class*="title"] {
    font-family: var(--serif) !important;
}

p,
li,
label,
input,
textarea,
select,
button,
a {
    font-family: var(--sans) !important;
}

button,
a {
    color: inherit;
    font: inherit;
}

button {
    border: 0;
}

a {
    text-decoration: none;
}

button:focus-visible,
a:focus-visible {
    outline: 1px solid var(--gold);
    outline-offset: 5px;
}

.tw-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    isolation: isolate;
    background: #1a140f;
}

/* Loader */
.tw-loader {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: grid;
    place-content: center;
    justify-items: center;
    gap: 18px;
    background: #111;
}

.tw-loader__logo {
    width: clamp(92px, 9vw, 150px);
    height: auto;
}

.tw-loader__track {
    width: min(270px, 55vw);
    height: 1px;
    overflow: hidden;
    background: rgba(255, 255, 255, .15);
}

.tw-loader__track span {
    display: block;
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    transform-origin: left;
    background: var(--gold);
}

.tw-loader__text {
    color: var(--muted);
    font-size: 9px;
    letter-spacing: .24em;
    text-transform: uppercase;
}

/* Fullscreen media */
.tw-media,
.tw-slide,
.tw-poster,
.tw-video,
.tw-shade,
.tw-grain {
    position: absolute;
    inset: 0;
}

.tw-media {
    z-index: 0;
    overflow: hidden;
}

/* will-change is held permanently on purpose. Scoping it to the transition
   made the compositor build these layers at the moment the wipe started, and
   a freshly created layer has nothing in it until it is rasterised — which
   showed up as a black flash. Keeping the layers warm avoids that entirely. */
.tw-slide {
    visibility: hidden;
    overflow: hidden;
    clip-path: inset(0 0 0 100%);
    will-change: clip-path;
}

.tw-slide.is-active {
    visibility: visible;
    clip-path: inset(0);
}

.tw-poster,
.tw-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.055);
    will-change: transform, opacity;
}

.tw-poster {
    z-index: 1;
}

.tw-video {
    z-index: 2;
    opacity: 1;
}



.tw-shade {
    z-index: 5;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(5, 5, 5, .95) 0%, rgba(5, 5, 5, .80) 16%, rgba(5, 5, 5, .50) 36%, rgba(5, 5, 5, .12) 66%, rgba(5, 5, 5, .03) 100%),
        linear-gradient(180deg, rgba(5, 5, 5, .26), transparent 32%, rgba(5, 5, 5, .12) 70%, rgba(5, 5, 5, .58));
}

/*
.tw-grain {
    z-index: 6;
    inset: -50%;
    pointer-events: none;
    opacity: .055;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
    animation: grain .22s steps(2) infinite;
    display: none;
}
*/

@keyframes grain {
    0% {
        transform: translate3d(0, 0, 0);
    }

    25% {
        transform: translate3d(2%, -1%, 0);
    }

    50% {
        transform: translate3d(-1%, 2%, 0);
    }

    75% {
        transform: translate3d(1%, 1%, 0);
    }

    100% {
        transform: translate3d(-2%, -2%, 0);
    }
}

/* Header */
.tw-header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 30;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: clamp(28px, 5.5vh, 58px) clamp(28px, 3.2vw, 64px);
}

.tw-logo {
    display: block;
    width: clamp(86px, 7.8vw, 125px);
}

.tw-logo img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 120px;
    margin-top: -40px;
    object-fit: contain;
    object-position: left top;
}

.tw-top-nav {
    display: flex;
    align-items: center;
    gap: clamp(26px, 3.2vw, 58px);
    margin-top: 10px;
}

.tw-top-nav a {
    position: relative;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .27em;
    text-transform: uppercase;
}

.tw-top-nav a::after {
    position: absolute;
    right: 100%;
    bottom: -8px;
    left: 0;
    height: 1px;
    content: "";
    background: #fff;
    transition: right .45s var(--ease);
}

.tw-top-nav a:hover::after {
    right: 0;
}

/* Left project number navigation */
.tw-number-nav {
    position: absolute;
    top: 31%;
    left: clamp(28px, 3.1vw, 62px);
    z-index: 25;
    display: flex;
    flex-direction: column;
    gap: clamp(18px, 2.4vh, 28px);
}

.tw-number-nav button {
    display: flex;
    align-items: center;
    gap: 17px;
    min-width: 73px;
    padding: 0;
    background: transparent;
    color: rgba(255, 255, 255, .58);
    font-size: 11px;
    cursor: pointer;
    transition: color .35s ease;
}

.tw-number-nav button i {
    display: block;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width .55s var(--ease);
}

.tw-number-nav button.is-active {
    color: var(--gold);
}

.tw-number-nav button.is-active i {
    width: 20px;
}

/* Main copy */
.tw-copy {
    position: absolute;
    top: 29%;
    left: clamp(145px, 11vw, 220px);
    z-index: 20;
    width: min(590px, 43vw);
}

.tw-eyebrow {
    display: none;
    margin: 0 0 14px;
    color: rgba(255, 255, 255, .66);
    font-size: 9px;
    letter-spacing: .28em;
    text-transform: uppercase;
}

.tw-title {
    margin: 0;
    font-family: var(--serif);
    font-weight: 400;
    line-height: .86;
    letter-spacing: -.045em;
}

.tw-title>span {
    display: block;
    width: max-content;
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.tw-title-light {
    color: var(--white);
    font-size: clamp(72px, 7.4vw, 142px);
}

.tw-title-gold {
    color: var(--gold);
    font-size: clamp(65px, 6.7vw, 129px);
}

.tw-word {
    display: inline-block;
    will-change: transform, opacity;
}

.tw-description {
    margin: clamp(24px, 3vh, 36px) 0 0;
    color: rgba(255, 255, 255, .88);
    font-family: var(--serif);
    font-size: clamp(18px, 1.45vw, 28px);
    line-height: 1.22;
}

.tw-cta {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    min-width: 270px;
    margin-top: clamp(30px, 4vh, 48px);
    padding: 18px 22px;
    border: 1px solid rgba(255, 255, 255, .38);
    background: rgba(9, 9, 9, .14);
    backdrop-filter: blur(8px);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .21em;
    text-transform: uppercase;
    transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease), transform .4s var(--ease);
}

.tw-cta:hover {
    border-color: var(--white);
    background: var(--white);
    color: #111;
    transform: translateY(-3px);
}

.tw-vertical-brand {
    position: absolute;
    bottom: 136px;
    left: clamp(28px, 3.1vw, 62px);
    z-index: 25;
    color: var(--gold);
    font-size: 8px;
    letter-spacing: .28em;
    transform: rotate(-90deg);
    transform-origin: left bottom;
}

/* Project-specific bottom navigation */
.tw-footer {
    position: absolute;
    right: clamp(28px, 3.2vw, 64px);
    bottom: clamp(24px, 4.5vh, 48px);
    left: clamp(28px, 3.2vw, 64px);
    z-index: 25;
}

.tw-project-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, .17);
}

.tw-project-strip button {
    position: relative;
    display: flex;
    align-items: baseline;
    gap: 11px;
    min-width: 0;
    padding: 20px 18px 0 0;
    background: transparent;
    color: rgba(255, 255, 255, .52);
    text-align: left;
    cursor: pointer;
    transition: color .35s ease;
}

.tw-project-strip button::before {
    position: absolute;
    top: -1px;
    right: 100%;
    left: 0;
    height: 1px;
    content: "";
    background: var(--gold);
    transition: right .6s var(--ease);
}

.tw-project-strip small {
    flex: 0 0 auto;
    color: var(--gold);
    font-size: 8px;
    letter-spacing: .12em;
}

.tw-project-strip span {
    overflow: hidden;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .16em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.tw-project-strip button.is-active {
    color: var(--white);
}

.tw-project-strip button.is-active::before {
    right: 0;
}

.tw-progress {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 40;
    height: 2px;
    background: rgba(255, 255, 255, .08);
}

.tw-progress span {
    display: block;
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    transform-origin: left;
    background: var(--gold);
}

.tw-arrow-icon {
    display: block;
    flex: 0 0 auto;
    transition: transform 0.4s cubic-bezier(.22, 1, .36, 1);
}

.tw-cta:hover .tw-arrow-icon {
    transform: translateX(5px);
}

.tw-mobile-meta {
    display: none;
}

/* Cursor */
.tw-cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    display: grid;
    place-items: center;
    width: 74px;
    height: 74px;
    border: 1px solid rgba(255, 255, 255, .75);
    border-radius: 50%;
    background: rgba(10, 10, 10, .12);
    backdrop-filter: blur(5px);
    font-size: 8px;
    letter-spacing: .18em;
    text-transform: uppercase;
    transform: translate(-50%, -50%) scale(0);
    pointer-events: none;
}

@media (hover:hover) and (pointer:fine) {

    .tw-media,
    .tw-number-nav button,
    .tw-project-strip button {
        cursor: none;
    }
}

@media (max-width: 1200px) {
    .tw-copy {
        left: 130px;
        width: 520px;
    }

    .tw-number-nav,
    .tw-vertical-brand {
        left: 30px;
    }

    .tw-project-strip button {
        padding-right: 10px;
    }

    .tw-project-strip span {
        font-size: 8px;
        letter-spacing: .12em;
    }
}

@media (max-width: 900px) {

    .tw-top-nav,
    .tw-number-nav,
    .tw-vertical-brand,
    .tw-footer {
        display: none;
    }

    .tw-header {
        padding: 22px 20px;
    }

    .tw-logo {
        width: 92px;
    }

    .tw-shade {
        background:
            linear-gradient(180deg, rgba(6, 6, 6, .16), transparent 30%, rgba(6, 6, 6, .22) 52%, rgba(6, 6, 6, .92) 100%),
            linear-gradient(90deg, rgba(6, 6, 6, .34), transparent 72%);
    }

    .tw-copy {
        top: auto;
        right: 20px;
        bottom: 124px;
        left: 20px;
        width: auto;
    }

    .tw-title-light {
        font-size: clamp(55px, 15vw, 90px);
    }

    .tw-title-gold {
        font-size: clamp(49px, 13.5vw, 81px);
    }

    .tw-description {
        margin-top: 18px;
        font-size: 18px;
    }

    .tw-cta {
        min-width: 215px;
        margin-top: 24px;
        padding: 14px 17px;
        font-size: 8px;
    }

    .tw-mobile-meta {
        position: absolute;
        right: 20px;
        bottom: 27px;
        left: 20px;
        z-index: 30;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .tw-mobile-meta>div:first-child {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .tw-mobile-number {
        color: var(--gold);
        font-size: 10px;
        letter-spacing: .16em;
    }

    .tw-mobile-type {
        color: rgba(255, 255, 255, .74);
        font-family: var(--serif);
        font-size: 18px;
    }

    .tw-mobile-meta>div:last-child {
        display: flex;
        gap: 8px;
    }

    .tw-mobile-meta button {
        display: grid;
        place-items: center;
        width: 43px;
        height: 43px;
        border: 1px solid rgba(255, 255, 255, .26);
        border-radius: 50%;
        background: rgba(0, 0, 0, .10);
    }

    .tw-cursor {
        display: none;
    }
}

@media (max-width: 480px) {
    .tw-copy {
        bottom: 118px;
    }

    .tw-title-light {
        font-size: 13.7vw;
    }

    .tw-title-gold {
        font-size: 12.4vw;
    }

    .tw-description {
        font-size: 16px;
    }

    .tw-cta {
        margin-top: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .tw-grain,
    .tw-cursor {
        display: none;
    }
}

/* =========================================================
   V9 — HOMEPAGE TYPOGRAPHY
========================================================= */
:root {
    --gold: #a8603a;
    --serif: "Albra", Georgia, serif;
    --sans: "Acumin", Arial, sans-serif;
}

html,
body,
button,
a,
.tw-hero {
    font-family: var(--sans);
}

.tw-title,
.tw-description,
.tw-mobile-type {
    font-family: var(--sans);
}

.tw-title {
    line-height: .92;
    letter-spacing: -.045em;
}

.tw-title-light {
    font-size: clamp(64px, 6.5vw, 124px);
}

.tw-title-gold {
    font-size: clamp(58px, 5.95vw, 113px);
}

.tw-description {
    font-size: clamp(16px, 1.25vw, 21px);
    line-height: 1.45;
}

@media(max-width:900px) {
    .tw-title-light {
        font-size: clamp(52px, 13.2vw, 82px)
    }

    .tw-title-gold {
        font-size: clamp(47px, 11.9vw, 74px)
    }
}


/* =========================================================
   V10 — PREMIUM RESPONSIVE NAVIGATION
========================================================= */
.tw-mobile-menu,
.tw-mobile-contact {
    display: none
}

@media(max-width:900px) {
    .tw-header {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 120;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 22px;
    }

    .tw-logo {
        position: relative;
        z-index: 3;
        width: 76px
    }

    .tw-logo img {
        margin-top: 0;
        max-height: 76px
    }

    .tw-mobile-menu {
        position: relative;
        z-index: 3;
        display: flex;
        width: 46px;
        height: 46px;
        padding: 0;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 7px;
        border: 1px solid rgba(255, 255, 255, .20);
        border-radius: 50%;
        background: rgba(8, 8, 8, .18);
        backdrop-filter: blur(10px);
        cursor: pointer;
    }

    .tw-mobile-menu span {
        display: block;
        width: 20px;
        height: 1px;
        background: #fff;
        transition: transform .45s var(--ease), width .35s var(--ease), opacity .3s ease;
    }

    .tw-mobile-menu span:last-child {
        width: 13px
    }

    .tw-mobile-menu.is-active span:first-child {
        transform: translateY(4px) rotate(45deg)
    }

    .tw-mobile-menu.is-active span:last-child {
        width: 20px;
        transform: translateY(-4px) rotate(-45deg)
    }

    .tw-top-nav {
        position: fixed;
        inset: 0;
        z-index: 2;
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        gap: 0;
        margin: 0;
        padding: 112px 28px 42px;
        background:
            radial-gradient(circle at 85% 16%, rgba(190, 156, 111, .14), transparent 28%),
            #0d0d0d;
        transform: translateY(-104%);
        visibility: hidden;
        pointer-events: none;
        transition: transform .72s cubic-bezier(.76, 0, .24, 1), visibility 0s linear .72s;
        counter-reset: tw-mobile-nav;
    }

    .tw-top-nav::before {
        content: "TW DESIGN";
        position: absolute;
        top: 92px;
        left: 28px;
        color: var(--gold);
        font-size: 9px;
        letter-spacing: .28em;
    }

    .tw-top-nav.is-open {
        transform: translateY(0);
        visibility: visible;
        pointer-events: auto;
        transition-delay: 0s;
    }

    .tw-top-nav a:not(.tw-mobile-contact) {
        counter-increment: tw-mobile-nav;
        position: relative;
        display: flex;
        align-items: center;
        gap: 18px;
        width: 100%;
        padding: 17px 0;
        border-bottom: 1px solid rgba(255, 255, 255, .12);
        color: #fff;
        font-size: clamp(26px, 9vw, 42px);
        font-weight: 400;
        letter-spacing: -.035em;
        line-height: 1.1;
        text-transform: none;
        opacity: 0;
        transform: translateY(28px);
        transition: opacity .45s ease, transform .6s var(--ease), color .3s ease;
    }

    .tw-top-nav.is-open a:not(.tw-mobile-contact) {
        opacity: 1;
        transform: translateY(0)
    }

    .tw-top-nav.is-open a:nth-child(1) {
        transition-delay: .13s
    }

    .tw-top-nav.is-open a:nth-child(2) {
        transition-delay: .18s
    }

    .tw-top-nav.is-open a:nth-child(3) {
        transition-delay: .23s
    }

    .tw-top-nav.is-open a:nth-child(4) {
        transition-delay: .28s
    }

    .tw-top-nav a:not(.tw-mobile-contact)::before {
        content: "0" counter(tw-mobile-nav);
        flex: 0 0 28px;
        color: var(--gold);
        font-size: 9px;
        letter-spacing: .16em;
    }

    .tw-top-nav a::after {
        display: none
    }

    .tw-mobile-contact {
        position: absolute !important;
        right: 28px;
        bottom: 34px;
        left: 28px;
        display: block !important;
        padding-top: 18px !important;
        border-top: 1px solid rgba(255, 255, 255, .16) !important;
        color: rgba(255, 255, 255, .62) !important;
        font-size: 10px !important;
        font-weight: 500 !important;
        letter-spacing: .17em !important;
        text-transform: uppercase !important;
    }

    body.tw-menu-open .tw-copy,
    body.tw-menu-open .tw-mobile-meta {
        pointer-events: none
    }
}


/* =========================================================
   V11 — STABLE PREMIUM MOBILE NAVIGATION
========================================================= */

html,
body,
.tw-hero {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.tw-mobile-panel {
    display: none;
}

@media (max-width: 900px) {
    .tw-header {
        position: absolute;
        z-index: 220;
        width: 100%;
        max-width: 100vw;
        transform: none !important;
    }

    .tw-top-nav {
        display: none !important;
    }

    .tw-mobile-panel {
        position: fixed;
        inset: 0;
        z-index: 210;
        display: flex;
        flex-direction: column;
        width: 100vw;
        max-width: 100%;
        height: 100vh;
        height: 100dvh;
        padding: 108px 22px 26px;
        overflow: hidden;
        background:
            linear-gradient(145deg, rgba(190, 156, 111, .08), transparent 34%),
            #0d0d0d;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        clip-path: circle(0 at calc(100% - 45px) 43px);
        transition:
            clip-path .78s cubic-bezier(.76, 0, .24, 1),
            opacity .25s ease,
            visibility 0s linear .78s;
    }

    .tw-mobile-panel::before {
        position: absolute;
        right: -130px;
        bottom: -180px;
        width: 390px;
        height: 390px;
        border: 1px solid rgba(190, 156, 111, .13);
        border-radius: 50%;
        content: "";
    }

    .tw-mobile-panel::after {
        position: absolute;
        right: -48px;
        bottom: -96px;
        width: 220px;
        height: 220px;
        border: 1px solid rgba(255, 255, 255, .055);
        border-radius: 50%;
        content: "";
    }

    .tw-mobile-panel__glow {
        position: absolute;
        top: 74px;
        right: -90px;
        width: 260px;
        height: 260px;
        border-radius: 50%;
        background: rgba(190, 156, 111, .12);
        filter: blur(95px);
        pointer-events: none;
    }

    .tw-mobile-panel.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        clip-path: circle(145% at calc(100% - 45px) 43px);
        transition-delay: 0s;
    }

    .tw-mobile-panel__nav {
        position: relative;
        z-index: 2;
        display: flex;
        flex: 1 1 auto;
        flex-direction: column;
        justify-content: center;
        width: 100%;
        min-height: 0;
        border-top: 1px solid rgba(255, 255, 255, .13);
    }

    .tw-mobile-panel__nav a {
        display: grid;
        grid-template-columns: 34px minmax(0, 1fr) 23px;
        align-items: center;
        gap: 12px;
        width: 100%;
        padding: 17px 2px;
        border-bottom: 1px solid rgba(255, 255, 255, .13);
        color: #fff;
        opacity: 0;
        transform: translateY(24px);
        transition:
            opacity .44s ease,
            transform .62s var(--ease),
            color .3s ease;
    }

    .tw-mobile-panel__nav a span {
        color: var(--gold);
        font-size: 9px;
        font-weight: 600;
        letter-spacing: .15em;
    }

    .tw-mobile-panel__nav a strong {
        min-width: 0;
        overflow: hidden;
        font-size: clamp(27px, 8.2vw, 36px);
        font-weight: 400;
        line-height: 1;
        letter-spacing: -.025em;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .tw-mobile-panel__nav a svg {
        width: 21px;
        height: 21px;
    }

    .tw-mobile-panel.is-open .tw-mobile-panel__nav a {
        opacity: 1;
        transform: translateY(0);
    }

    .tw-mobile-panel.is-open .tw-mobile-panel__nav a:nth-child(1) {
        transition-delay: .20s;
    }

    .tw-mobile-panel.is-open .tw-mobile-panel__nav a:nth-child(2) {
        transition-delay: .26s;
    }

    .tw-mobile-panel.is-open .tw-mobile-panel__nav a:nth-child(3) {
        transition-delay: .32s;
    }

    .tw-mobile-panel.is-open .tw-mobile-panel__nav a:nth-child(4) {
        transition-delay: .38s;
    }

    .tw-mobile-panel__footer {
        position: relative;
        z-index: 2;
        display: flex;
        flex: 0 0 auto;
        align-items: flex-end;
        justify-content: space-between;
        gap: 18px;
        padding-top: 20px;
    }

    .tw-mobile-panel__footer div {
        display: flex;
        min-width: 0;
        flex-direction: column;
        gap: 5px;
    }

    .tw-mobile-panel__footer small {
        color: var(--gold);
        font-size: 8px;
        font-weight: 600;
        letter-spacing: .22em;
        text-transform: uppercase;
    }

    .tw-mobile-panel__footer div>a {
        max-width: 240px;
        overflow: hidden;
        color: rgba(255, 255, 255, .72);
        font-size: 11px;
        letter-spacing: .06em;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .tw-mobile-panel__social {
        display: grid;
        flex: 0 0 auto;
        place-items: center;
        width: 44px;
        height: 44px;
        border: 1px solid rgba(190, 156, 111, .62);
        border-radius: 50%;
        color: var(--gold);
    }

    .tw-mobile-panel__social svg {
        width: 18px;
        height: 18px;
    }

    body.tw-menu-open {
        height: 100%;
        overflow: hidden !important;
        overscroll-behavior: none;
    }

    body.tw-menu-open .tw-header {
        position: fixed;
        background: transparent;
    }
}

@media (max-width: 390px) {
    .tw-mobile-panel {
        padding-right: 18px;
        padding-left: 18px;
    }

    .tw-mobile-panel__nav a {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .tw-mobile-panel__nav a strong {
        font-size: 29px;
    }
}


/* =============================================
   Homepage Mobile Menu
============================================= */

.tw-menu-toggle {
    display: none;
}

.tw-menu-panel {
    display: none;
}

@media (max-width: 900px) {
    body.tw-menu-open {
        overflow: hidden;
    }

    .tw-header {
        z-index: 10000;
    }

    .tw-logo {
        position: relative;
        z-index: 10001;
    }

    .tw-top-nav {
        display: none;
    }

    /* Hamburger button */
    .tw-menu-toggle {
        position: relative;
        z-index: 10001;

        display: flex;
        width: 48px;
        height: 48px;

        padding: 0;
        border: 0;

        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 7px;

        background: transparent;

        cursor: pointer;
    }

    .tw-menu-toggle span {
        display: block;

        width: 26px;
        height: 1px;

        background: #ffffff;

        transform-origin: center;

        transition:
            transform 0.4s cubic-bezier(0.76, 0, 0.24, 1),
            opacity 0.3s ease;
    }

    .tw-menu-toggle.is-active span:first-child {
        transform: translateY(4px) rotate(45deg);
    }

    .tw-menu-toggle.is-active span:last-child {
        transform: translateY(-4px) rotate(-45deg);
    }

    /* Menu overlay */
    .tw-menu-panel {
        position: fixed;
        inset: 0;
        z-index: 9999;

        display: flex;
        min-height: 100svh;

        padding:
            clamp(8rem, 18vh, 10rem) 1.5rem 2rem;

        flex-direction: column;
        justify-content: space-between;

        overflow-y: auto;

        background: #090909;
        color: #ffffff;

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transform: translateY(-20px);

        transition:
            opacity 0.45s ease,
            visibility 0.45s ease,
            transform 0.55s cubic-bezier(0.76, 0, 0.24, 1);
    }

    .tw-menu-panel.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;

        transform: translateY(0);
    }

    .tw-menu-panel__glow {
        position: absolute;
        top: -15rem;
        right: -10rem;

        width: 30rem;
        height: 30rem;

        border-radius: 50%;

        background: rgba(201, 163, 109, 0.14);

        filter: blur(100px);

        pointer-events: none;
    }

    /* Navigation links */
    .tw-menu-panel__nav {
        position: relative;
        z-index: 2;

        display: flex;
        flex-direction: column;
    }

    .tw-menu-panel__nav a {
        display: grid;

        grid-template-columns: 42px 1fr 28px;
        gap: 0.75rem;
        align-items: center;

        min-height: 82px;

        border-bottom: 1px solid rgba(255, 255, 255, 0.14);

        color: rgba(255, 255, 255, 0.76);
        text-decoration: none;

        transition:
            color 0.3s ease,
            padding 0.3s ease;
    }

    .tw-menu-panel__nav a:first-child {
        border-top: 1px solid rgba(255, 255, 255, 0.14);
    }

    .tw-menu-panel__nav a>span {
        color: rgba(255, 255, 255, 0.35);

        font-size: 0.65rem;
        letter-spacing: 0.15em;
    }

    .tw-menu-panel__nav a strong {
        font-size: clamp(1.8rem, 8vw, 2.8rem);
        font-weight: 400;
        letter-spacing: -0.04em;
    }

    .tw-menu-panel__nav a svg {
        width: 25px;

        transition: transform 0.3s ease;
    }

    .tw-menu-panel__nav a:hover,
    .tw-menu-panel__nav a.is-active {
        padding-left: 8px;
        color: var(--gold);
    }

    .tw-menu-panel__nav a:hover svg {
        transform: translateX(5px);
    }

    /* Menu footer */
    .tw-menu-panel__footer {
        position: relative;
        z-index: 2;

        display: flex;

        margin-top: 3rem;

        align-items: flex-end;
        justify-content: space-between;
    }

    .tw-menu-panel__footer>div {
        display: flex;
        flex-direction: column;
        gap: 0.4rem;
    }

    .tw-menu-panel__footer small {
        color: var(--gold);

        font-size: 0.65rem;
        text-transform: uppercase;
        letter-spacing: 0.16em;
    }

    .tw-menu-panel__footer a {
        color: rgba(255, 255, 255, 0.72);
        text-decoration: none;

        font-size: 0.85rem;
    }

    .tw-menu-panel__instagram {
        display: grid;

        width: 42px;
        height: 42px;

        border: 1px solid rgba(255, 255, 255, 0.22);

        place-items: center;
    }

    .tw-menu-panel__instagram svg {
        width: 19px;
    }
}

/* =========================================================
   FINAL RESPONSIVE TYPE SCALE
========================================================= */

.tw-title-light {
    font-size: clamp(56px, 5.5vw, 104px);
}

.tw-title-gold {
    font-size: clamp(50px, 5vw, 94px);
}

@media (max-width: 900px) {
    .tw-title-light {
        font-size: clamp(42px, 11vw, 66px);
    }

    .tw-title-gold {
        font-size: clamp(38px, 10vw, 60px);
    }

    .tw-copy {
        right: 20px;
        left: 20px;
        width: auto;
        max-width: 620px;
    }

    .tw-title>span {
        width: auto;
        max-width: 100%;
        white-space: normal;
    }
}

@media (max-width: 480px) {
    .tw-title-light {
        font-size: clamp(40px, 11.5vw, 55px);
    }

    .tw-title-gold {
        font-size: clamp(36px, 10.4vw, 50px);
    }

    .tw-description {
        font-size: 15px;
    }

    .tw-cta {
        min-width: min(215px, 100%);
    }
}

@media (max-width: 900px) and (max-height: 720px) {
    .tw-copy {
        bottom: 96px;
    }

    .tw-eyebrow {
    display: none;
        margin-bottom: 8px;
    }

    .tw-title-light {
        font-size: clamp(38px, 9vh, 58px);
    }

    .tw-title-gold {
        font-size: clamp(34px, 8.1vh, 52px);
    }

    .tw-description {
        margin-top: 12px;
        font-size: 14px;
    }

    .tw-cta {
        margin-top: 14px;
        padding: 12px 15px;
    }

    .tw-mobile-meta {
        bottom: 18px;
    }

    .tw-menu-panel {
        padding-top: 88px;
        padding-bottom: 18px;
    }

    .tw-menu-panel__nav a {
        min-height: 60px;
        padding-top: 11px;
        padding-bottom: 11px;
    }

    .tw-menu-panel__nav a strong {
        font-size: clamp(24px, 7vw, 31px);
    }

    .tw-menu-panel__footer {
        margin-top: 1.5rem;
    }
}
