/* =========================================================
   R JAY
   OFFICIAL ARTIST EXPERIENCE
========================================================= */


/* =========================================================
   ROOT
========================================================= */

:root {

    --black: #050505;

    --black-soft: #0a0a0a;

    --white: #f1efeb;

    --muted: rgba(241, 239, 235, 0.52);

    --faint: rgba(241, 239, 235, 0.12);

    --gold: #b28a56;

    --gold-soft: rgba(178, 138, 86, 0.35);

    --ease:
        cubic-bezier(
            0.16,
            1,
            0.3,
            1
        );

}


/* =========================================================
   RESET
========================================================= */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    background: var(--black);

    color: var(--white);

    font-family:
        "Manrope",
        sans-serif;

    overflow-x: hidden;

}


body.menu-open {

    overflow: hidden;

}


a {

    color: inherit;

    text-decoration: none;

}


button {

    font: inherit;

}


/* =========================================================
   CINEMATIC BACKGROUND
========================================================= */

.atmosphere {

    position: fixed;

    inset: 0;

    z-index: -10;

    overflow: hidden;

    pointer-events: none;

}


#rainCanvas {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

}


.ambient {

    position: absolute;

    width: 700px;

    height: 700px;

    border-radius: 50%;

    filter: blur(140px);

    opacity: 0.13;

}


.ambient-one {

    background: var(--gold);

    top: -300px;

    right: -200px;

    animation:
        ambientMoveOne
        18s ease-in-out infinite;

}


.ambient-two {

    background: #3a2b20;

    bottom: -300px;

    left: -250px;

    animation:
        ambientMoveTwo
        22s ease-in-out infinite;

}


.noise {

    position: absolute;

    inset: 0;

    opacity: 0.035;

    background-image:

        repeating-radial-gradient(
            circle at 0 0,
            transparent 0,
            rgba(255,255,255,0.6) 1px,
            transparent 2px
        );

    background-size:
        5px 5px;

}


.vignette {

    position: absolute;

    inset: 0;

    background:

        radial-gradient(
            circle at center,
            transparent 30%,
            rgba(0,0,0,0.55) 100%
        );

}


/* =========================================================
   CURSOR
========================================================= */

.cursor-glow {

    position: fixed;

    left: 0;

    top: 0;

    width: 300px;

    height: 300px;

    border-radius: 50%;

    transform:
        translate(-50%, -50%);

    background:

        radial-gradient(
            circle,
            rgba(178,138,86,0.16),
            rgba(178,138,86,0.05) 35%,
            transparent 70%
        );

    pointer-events: none;

    z-index: 9999;

    opacity: 0;

}


.cursor-dot {

    position: fixed;

    left: 0;

    top: 0;

    width: 6px;

    height: 6px;

    border-radius: 50%;

    background: var(--white);

    transform:
        translate(-50%, -50%);

    pointer-events: none;

    z-index: 10000;

    opacity: 0;

    box-shadow:

        0 0 12px
        rgba(255,255,255,0.8),

        0 0 30px
        rgba(178,138,86,0.5);

}


body.cursor-active .cursor-glow,
body.cursor-active .cursor-dot {

    opacity: 1;

}


body.cursor-hover .cursor-glow {

    width: 380px;

    height: 380px;

}


/* =========================================================
   PRELOADER
========================================================= */

.preloader {

    position: fixed;

    inset: 0;

    z-index: 100000;

    background: #030303;

    display: flex;

    align-items: center;

    justify-content: center;

    transition:

        opacity 1s var(--ease),

        visibility 1s var(--ease);

}


.preloader.hidden {

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

}


.loader-noise {

    position: absolute;

    inset: 0;

    opacity: 0.04;

    background-image:

        repeating-radial-gradient(
            circle,
            rgba(255,255,255,0.8) 0,
            rgba(255,255,255,0.8) 1px,
            transparent 1px,
            transparent 4px
        );

}


.loader-content {

    width:

        min(
            680px,
            82vw
        );

    position: relative;

    z-index: 2;

}


.loader-kicker {

    display: block;

    margin-bottom: 24px;

    font-size: 9px;

    letter-spacing: 0.45em;

    color: var(--muted);

}


.loader-title {

    display: flex;

    gap:

        clamp(
            10px,
            3vw,
            28px
        );

    overflow: visible;
    padding-bottom: 0.1em;


}


.loader-title span {

    font-family:
        "Playfair Display",
        serif;

    font-size:

        clamp(
            70px,
            13vw,
            170px
        );

    font-weight: 600;

    line-height: 1.1;

    transform:
        translateY(120%);

    opacity: 0;

    animation:
        loaderLetter
        1.1s
        var(--ease)
        forwards;

}


.loader-title span:nth-child(1) {

    animation-delay: 0.1s;

}


.loader-title span:nth-child(2) {

    animation-delay: 0.2s;

}


.loader-title span:nth-child(3) {

    animation-delay: 0.3s;

}


.loader-title span:nth-child(4) {

    animation-delay: 0.4s;

}


.loader-progress {

    margin-top: 42px;

}


.loader-progress-line {

    width: 100%;

    height: 1px;

    background:
        rgba(255,255,255,0.16);

    overflow: visible;

}


.loader-progress-line span {

    display: block;

    width: 0%;

    height: 100%;

    background: var(--gold);

    box-shadow:
        0 0 20px var(--gold);

}


.loader-progress-info {

    margin-top: 12px;

    display: flex;

    justify-content: space-between;

    font-family:
        "DM Mono",
        monospace;

    font-size: 8px;

    letter-spacing: 0.2em;

    color: var(--muted);

}


.loader-name {

    display: block;

    margin-top: 38px;

    font-size: 9px;

    letter-spacing: 0.42em;

    color: var(--gold);

}


/* =========================================================
   HEADER
========================================================= */

.site-header {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 5000;

    padding:

        28px
        clamp(25px, 4vw, 70px);

    transition:

        background 0.5s ease,

        padding 0.5s ease,

        backdrop-filter 0.5s ease;

}


.site-header.scrolled {

    background:
        rgba(5,5,5,0.72);

    backdrop-filter:
        blur(18px);

    padding-top: 18px;

    padding-bottom: 18px;

}


.site-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


.brand {

    display: flex;

    align-items: center;

    gap: 12px;

}


.brand-logo {

    width: 34px;

    height: 34px;

    object-fit: contain;

    filter:
        invert(1)
        brightness(1.6);

    opacity: 0.95;

    transition:
        transform 0.5s var(--ease);

}


.brand:hover .brand-logo {

    transform:
        rotate(-4deg)
        scale(1.08);

}


.brand-text {

    display: flex;

    flex-direction: column;

}


.brand-name {

    font-family:
        "Playfair Display",
        serif;

    font-size: 21px;

    line-height: 1;

    letter-spacing: 0.02em;

}


.brand-sub {

    margin-top: 4px;

    font-size: 6px;

    letter-spacing: 0.35em;

    color: var(--muted);

}


.desktop-nav {

    display: flex;

    align-items: center;

    gap:

        clamp(
            16px,
            2vw,
            32px
        );

}


.desktop-nav a {

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 0.18em;

    color: var(--muted);

    transition:

        color 0.3s ease,

        transform 0.3s ease;

}


.desktop-nav a span {

    color: var(--gold);

    margin-right: 5px;

}


.desktop-nav a:hover {

    color: var(--white);

    transform:
        translateY(-2px);

}


.menu-button {

    display: none;

    width: 42px;

    height: 42px;

    border:

        1px solid
        rgba(255,255,255,0.12);

    background: transparent;

    cursor: pointer;

}


.menu-button span {

    display: block;

    width: 16px;

    height: 1px;

    background: var(--white);

    margin: 5px auto;

    transition:
        transform 0.4s ease;

}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {

    position: fixed;

    inset: 0;

    z-index: 4500;

    background:
        rgba(4,4,4,0.98);

    opacity: 0;

    visibility: hidden;

    transition:
        all 0.6s var(--ease);

}


.mobile-menu.active {

    opacity: 1;

    visibility: visible;

}


.mobile-menu-content {

    min-height: 100%;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding:
        100px 35px;

}


.menu-label {

    font-size: 8px;

    letter-spacing: 0.35em;

    color: var(--gold);

    margin-bottom: 30px;

}


.mobile-menu a {

    font-family:
        "Playfair Display",
        serif;

    font-size:

        clamp(
            30px,
            9vw,
            60px
        );

    margin:
        10px 0;

}


.mobile-menu-social {

    margin-top: 40px;

    display: flex;

    gap: 20px;

}


.mobile-menu-social a {

    font-family: inherit;

    font-size: 18px;

    color: var(--muted);

}


/* =========================================================
   HERO
========================================================= */

.hero {

    position: relative;

    min-height: 100svh;

    overflow: hidden;

    display: flex;

    align-items: center;

}


.hero-image {

    position: absolute;

    inset: 0;

    z-index: 0;

}


.hero-image img {

    width: 100%;
    height: 100%;

    /*
       Show the complete artist instead of
       aggressively cropping the image
    */
    object-fit: contain;

    /*
       Keep the artist on the RIGHT
    */
    object-position: right center;

    /*
       Cinematic entrance without excessive zoom
    */
    transform: scale(1.02);

    transition:
        transform 5s var(--ease);

}


body.loaded .hero-image img {

    transform:
        scale(1);

}


.hero-darkness {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:

        linear-gradient(
            90deg,
            rgba(3,3,3,0.97) 0%,
            rgba(3,3,3,0.88) 28%,
            rgba(3,3,3,0.45) 57%,
            rgba(3,3,3,0.12) 100%
        ),

        linear-gradient(
            0deg,
            rgba(0,0,0,0.45),
            transparent 45%
        );

}


.hero-content {

    position: relative;

    z-index: 3;

    width: 100%;

    padding:

        160px
        clamp(30px, 8vw, 130px)
        110px;

}


.hero-eyebrow {

    display: flex;

    align-items: center;

    gap: 14px;

    font-size: 9px;

    letter-spacing: 0.32em;

    color: var(--gold);

}


.hero-eyebrow span {

    width: 30px;

    height: 1px;

    background: var(--gold);

}


.hero-name {

    margin-top: 70px;

    font-size: 9px;

    letter-spacing: 0.42em;

    color: var(--gold);

}


.hero-title {

    margin-top: 16px;

    font-family:
        "Playfair Display",
        serif;

    font-size:

        clamp(
            80px,
            12vw,
            190px
        );

    font-weight: 600;

    line-height: 0.8;

    letter-spacing: -0.07em;

}


.hero-role {

    margin-top: 34px;

    font-size: 9px;

    letter-spacing: 0.32em;

    color: var(--muted);

}


.hero-actions {

    display: flex;

    align-items: center;

    gap: 30px;

    margin-top: 45px;

}


.primary-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

    min-height: 58px;

    padding:

        0
        28px;

    border:
        1px solid var(--gold-soft);

    background:
        rgba(178,138,86,0.06);

    color: var(--white);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.2em;

    cursor: pointer;

    transition:

        background 0.4s ease,

        border-color 0.4s ease,

        transform 0.4s var(--ease);

}


.primary-button:hover {

    background:
        rgba(178,138,86,0.16);

    border-color:
        var(--gold);

    transform:
        translateY(-4px);

}


.visual-button {

    display: flex;

    align-items: center;

    gap: 15px;

    font-size: 9px;

    letter-spacing: 0.18em;

    color: var(--muted);

}


.visual-play {

    width: 42px;

    height: 42px;

    border-radius: 50%;

    border:

        1px solid
        rgba(255,255,255,0.18);

    display: grid;

    place-items: center;

    color: var(--white);

    transition:
        border-color 0.4s ease;

}


.visual-play i {

    font-size: 9px;

    margin-left: 2px;

}


.visual-button:hover .visual-play {

    border-color: var(--gold);

}


.hero-bottom {

    position: absolute;

    z-index: 4;

    left:

        clamp(
            30px,
            8vw,
            130px
        );

    right:

        clamp(
            30px,
            4vw,
            70px
        );

    bottom: 35px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    font-size: 7px;

    letter-spacing: 0.3em;

    color: var(--muted);

}


.hero-begin {

    display: flex;

    align-items: center;

    gap: 14px;

}


.hero-begin i {

    display: block;

    width: 45px;

    height: 1px;

    background: var(--gold);

}


.hero-index {

    position: absolute;

    right: 24px;

    top: 50%;

    z-index: 4;

    writing-mode: vertical-rl;

    transform:
        translateY(-50%);

    font-family:
        "DM Mono",
        monospace;

    font-size: 8px;

    letter-spacing: 0.25em;

    color: var(--gold);

}


/* =========================================================
   EXPERIENCE SECTIONS
========================================================= */

.experience-section {

    position: relative;

    min-height: 100svh;

    padding:

        150px
        clamp(30px, 8vw, 130px);

    display: flex;

    flex-direction: column;

    justify-content: center;

}


.section-number {

    position: absolute;

    right: 40px;

    top: 45px;

    font-size: 8px;

    letter-spacing: 0.25em;

    color: var(--gold);

}


.eyebrow {

    font-size: 9px;

    letter-spacing: 0.35em;

    color: var(--gold);

}


/* =========================================================
   ABOUT
========================================================= */

.about-layout {

    display: grid;

    grid-template-columns:
        1.1fr
        0.9fr;

    gap:

        clamp(
            60px,
            12vw,
            180px
        );

    align-items: center;

}


.about-left h2 {

    margin-top: 25px;

    font-family:
        "Playfair Display",
        serif;

    font-size:

        clamp(
            55px,
            8vw,
            120px
        );

    font-weight: 500;

    line-height: 0.92;

}


.about-right {

    max-width: 520px;

}


.about-intro {

    font-size:

        clamp(
            22px,
            2.2vw,
            34px
        );

    line-height: 1.4;

}


.about-right p:not(.about-intro) {

    margin-top: 25px;

    font-size: 14px;

    line-height: 1.9;

    color: var(--muted);

}


.text-link {

    display: inline-flex;

    align-items: center;

    gap: 14px;

    margin-top: 40px;

    font-size: 9px;

    letter-spacing: 0.2em;

    color: var(--gold);

}


/* =========================================================
   LATEST RELEASE
========================================================= */

.latest-section {

    overflow: hidden;

}


.latest-background {

    position: absolute;

    right: -2vw;

    top: 10%;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(
            90px,
            17vw,
            280px
        );

    color:
        rgba(255,255,255,0.025);

    white-space: nowrap;

    pointer-events: none;

}


.latest-layout {

    position: relative;

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap:

        clamp(
            50px,
            12vw,
            180px
        );

    align-items: center;

}


.new-release {

    display: block;

    margin-top: 35px;

    font-size: 8px;

    letter-spacing: 0.3em;

    color: var(--gold);

}


.latest-copy h2 {

    margin-top: 20px;

    font-family:
        "Playfair Display",
        serif;

    font-size:

        clamp(
            60px,
            8vw,
            130px
        );

    font-weight: 500;

    line-height: 0.9;

}


.latest-copy p {

    max-width: 400px;

    margin:
        30px 0;

    line-height: 1.8;

    color: var(--muted);

}


.latest-cover {

    position: relative;

    display: block;

    width:

        min(
            100%,
            560px
        );

    aspect-ratio: 1;

    margin-left: auto;

    overflow: hidden;

    background: #111;

}


.latest-cover img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 1s var(--ease);

}


.latest-cover:hover img {

    transform:
        scale(1.05);

}


.cover-play {

    position: absolute;

    left: 50%;

    top: 50%;

    transform:
        translate(-50%, -50%);

    width: 80px;

    height: 80px;

    border-radius: 50%;

    border:

        1px solid
        rgba(255,255,255,0.45);

    display: grid;

    place-items: center;

    backdrop-filter:
        blur(10px);

}


/* =========================================================
   MUSIC
========================================================= */

.music-header {

    margin-bottom: 80px;

}


.music-header h2 {

    margin-top: 20px;

    font-family:
        "Playfair Display",
        serif;

    font-size:

        clamp(
            45px,
            6vw,
            100px
        );

    font-weight: 500;

    line-height: 0.95;

}


.release-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 30px;

}


.release-card {

    position: relative;

}


.release-number {

    display: block;

    margin-bottom: 15px;

    font-family:
        "DM Mono",
        monospace;

    font-size: 9px;

    color: var(--gold);

}


.release-image {

    display: block;

    width: 100%;

    aspect-ratio: 1;

    overflow: hidden;

    background: #111;

}


.release-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 0.8s var(--ease);

}


.release-image:hover img {

    transform:
        scale(1.06);

}


.release-wide img {

    object-fit: cover;

}


.release-info {

    margin-top: 22px;

}


.release-info > span {

    font-size: 7px;

    letter-spacing: 0.28em;

    color: var(--gold);

}


.release-info h3 {

    margin-top: 10px;

    font-family:
        "Playfair Display",
        serif;

    font-size: 28px;

    font-weight: 500;

}


.release-info a {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 15px;

    font-size: 8px;

    letter-spacing: 0.15em;

    color: var(--muted);

}


.music-platforms {

    display: flex;

    align-items: center;

    gap: 25px;

    margin-top: 70px;

}


.music-platforms > span {

    font-size: 8px;

    letter-spacing: 0.2em;

    color: var(--muted);

}


.platform-link {

    display: flex;

    align-items: center;

    gap: 9px;

    font-size: 9px;

    letter-spacing: 0.14em;

    transition:
        color 0.3s ease;

}


.platform-link:hover {

    color: var(--gold);

}


/* =========================================================
   VISUAL SECTION
========================================================= */

.visual-section {

    position: relative;

    min-height: 100svh;

    overflow: hidden;

    display: flex;

    align-items: center;

    padding:

        150px
        clamp(30px, 8vw, 130px);

}


.visual-background {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: contain;
    object-position: right center;

}


.visual-overlay {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            90deg,
            rgba(0,0,0,0.9),
            rgba(0,0,0,0.35)
        ),

        linear-gradient(
            0deg,
            rgba(0,0,0,0.65),
            transparent 50%
        );

}


.visual-content {

    position: relative;

    z-index: 2;

}


.visual-content h2 {

    margin-top: 25px;

    font-family:
        "Playfair Display",
        serif;

    font-size:

        clamp(
            65px,
            10vw,
            160px
        );

    font-weight: 500;

    line-height: 0.88;

}


.visual-content p {

    max-width: 380px;

    margin-top: 25px;

    line-height: 1.8;

    color: var(--muted);

}


.sound-toggle {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 35px;

    padding:
        16px 20px;

    background:
        rgba(0,0,0,0.25);

    border:

        1px solid
        rgba(255,255,255,0.18);

    color: var(--white);

    font-size: 8px;

    letter-spacing: 0.18em;

    cursor: pointer;

}


.visual-label {

    position: absolute;

    z-index: 2;

    bottom: 35px;

    left:

        clamp(
            30px,
            8vw,
            130px
        );

    right:

        clamp(
            30px,
            4vw,
            70px
        );

    display: flex;

    justify-content: space-between;

    font-size: 8px;

    letter-spacing: 0.2em;

}


/* =========================================================
   STUDIO
========================================================= */

.studio-header h2 {

    margin-top: 25px;

    font-family:
        "Playfair Display",
        serif;

    font-size:

        clamp(
            55px,
            7vw,
            110px
        );

    font-weight: 500;

    line-height: 0.92;

}


/* =========================================================
   STUDIO / ABOUT PHOTOS
========================================================= */

.studio-images {

    position: relative;

    width: 100%;

    min-height: 700px;

}


.studio-photo {

    position: absolute;

    margin: 0;

    overflow: hidden;

    background: #111;

}


.studio-photo img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center top;

    transition:
        transform 0.8s var(--ease);

}


/* LEFT LARGE PHOTO */

.studio-photo-one {

    width: min(48vw, 650px);

    height: 570px;

    left: 0;

    top: 0;

}


.studio-photo-one img {

    object-position: center top;

}


/* RIGHT PHOTO */

.studio-photo-two {

    width: min(38vw, 500px);

    height: 470px;

    right: 0;

    top: 220px;

}


.studio-photo-two img {

    object-position: center top;

}


/* HOVER EFFECT */

.studio-photo:hover img {

    transform: scale(1.03);

}


.studio-words {

    display: flex;

    justify-content: space-between;

    margin-top: 30px;

    font-size: 8px;

    letter-spacing: 0.35em;

    color: var(--gold);

}


/* =========================================================
   LIVE
========================================================= */

.live-layout {

    display: grid;

    grid-template-columns:
        1fr
        0.8fr;

    gap:

        clamp(
            60px,
            12vw,
            180px
        );

    align-items: center;

}


.live-title h2 {

    margin-top: 20px;

    font-family:
        "Playfair Display",
        serif;

    font-size:

        clamp(
            60px,
            8vw,
            130px
        );

    font-weight: 500;

    line-height: 0.88;

}


.booking-card {

    padding:

        clamp(
            35px,
            5vw,
            70px
        );

    border:

        1px solid
        rgba(255,255,255,0.12);

    background:

        linear-gradient(
            145deg,
            rgba(255,255,255,0.05),
            rgba(255,255,255,0.01)
        );

}


.booking-small {

    font-size: 8px;

    letter-spacing: 0.3em;

    color: var(--gold);

}


.booking-card h3 {

    margin-top: 30px;

    font-family:
        "Playfair Display",
        serif;

    font-size:

        clamp(
            50px,
            6vw,
            90px
        );

    font-weight: 500;

    line-height: 0.9;

}


.booking-card p {

    margin:
        30px 0;

    line-height: 1.8;

    color: var(--muted);

}


/* =========================================================
   CONNECT
========================================================= */

.connect-top h2 {

    margin-top: 20px;

    font-family:
        "Playfair Display",
        serif;

    font-size:

        clamp(
            55px,
            8vw,
            130px
        );

    font-weight: 500;

    line-height: 0.88;

}


.connect-grid {

    display: grid;

    grid-template-columns:
        0.8fr
        1.2fr;

    gap:

        clamp(
            60px,
            12vw,
            180px
        );

    margin-top: 80px;

}


.contact-column {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 18px;

}


.contact-column > span {

    margin-bottom: 10px;

    font-size: 8px;

    letter-spacing: 0.28em;

    color: var(--gold);

}


.contact-column a {

    font-family:
        "Playfair Display",
        serif;

    font-size:

        clamp(
            20px,
            2vw,
            32px
        );

    transition:
        color 0.3s ease;

}


.contact-column a:hover {

    color: var(--gold);

}


.social-column {

    border-top:

        1px solid
        rgba(255,255,255,0.12);

}


.social-item {

    display: grid;

    grid-template-columns:
        40px
        1fr
        auto;

    align-items: center;

    padding:
        20px 0;

    border-bottom:

        1px solid
        rgba(255,255,255,0.12);

    transition:

        padding 0.4s var(--ease),

        color 0.3s ease;

}


.social-item:hover {

    padding-left: 12px;

    color: var(--gold);

}


.social-item i {

    font-size: 16px;

}


.social-item span {

    font-size: 10px;

    letter-spacing: 0.2em;

}


.social-item small {

    font-family:
        "DM Mono",
        monospace;

    font-size: 8px;

    color: var(--muted);

}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {

    min-height: 80svh;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 60px 30px;

}


.footer-line {

    width: 1px;

    height: 70px;

    background: var(--gold);

    margin-bottom: 35px;

}


.footer-logo {

    width: 70px;

    height: 70px;

    object-fit: contain;

    filter:
        invert(1)
        brightness(1.5);

    margin-bottom: 25px;

}


.site-footer h2 {

    font-family:
        "Playfair Display",
        serif;

    font-size:

        clamp(
            70px,
            10vw,
            150px
        );

    font-weight: 500;

    line-height: 1;

}


.site-footer p {

    margin-top: 20px;

    font-size: 8px;

    letter-spacing: 0.38em;

    color: var(--gold);

}


.site-footer > span {

    margin-top: 80px;

    font-size: 8px;

    letter-spacing: 0.2em;

    color: var(--muted);

}


/* =========================================================
   REVEAL ANIMATION
========================================================= */

.reveal {

    opacity: 0;

    transform:
        translateY(40px);

    transition:

        opacity 1.2s var(--ease),

        transform 1.2s var(--ease);

}


.reveal.visible {

    opacity: 1;

    transform:
        translateY(0);

}


/* =========================================================
   KEYFRAMES
========================================================= */

@keyframes loaderLetter {

    to {

        transform:
            translateY(0);

        opacity: 1;

    }

}


@keyframes ambientMoveOne {

    0%,
    100% {

        transform:
            translate(0, 0)
            scale(1);

    }

    50% {

        transform:
            translate(-100px, 80px)
            scale(1.15);

    }

}


@keyframes ambientMoveTwo {

    0%,
    100% {

        transform:
            translate(0, 0)
            scale(1);

    }

    50% {

        transform:
            translate(100px, -60px)
            scale(1.2);

    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .desktop-nav {

        display: none;

    }


    .menu-button {

        display: block;

    }


    .about-layout,
    .latest-layout,
    .live-layout,
    .connect-grid {

        grid-template-columns: 1fr;

    }


    .release-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .latest-cover {

        margin-left: 0;

    }


    .studio-images {

        height: 600px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .cursor-glow,
    .cursor-dot {

        display: none;

    }


    .site-header {

        padding:
            20px
            20px;

    }


    .brand-logo {

        width: 30px;

        height: 30px;

    }


    .hero-image img {

        object-position: 70% center;

    }


    .hero-darkness {

        background:

            linear-gradient(
                90deg,
                rgba(3,3,3,0.96),
                rgba(3,3,3,0.58)
            ),

            linear-gradient(
                0deg,
                rgba(0,0,0,0.65),
                transparent 50%
            );

    }


    .hero-content {

        padding:

            140px
            25px
            110px;

    }


    .hero-name {

        margin-top: 45px;

    }


    .hero-title {

        font-size: 85px;

    }


    .hero-actions {

        flex-direction: column;

        align-items: flex-start;

        gap: 25px;

    }


    .hero-bottom {

        left: 25px;

        right: 25px;

        bottom: 25px;

    }


    .hero-index {

        display: none;

    }


    .experience-section {

        padding:

            120px
            25px;

        min-height: auto;

    }


    .section-number {

        display: none;

    }


    .release-grid {

        grid-template-columns: 1fr;

        gap: 55px;

    }


    .music-platforms {

        flex-wrap: wrap;

    }


    .visual-section {

        padding:

            120px
            25px;

    }


    .visual-content h2 {

        font-size: 70px;

    }


    .visual-label {

        left: 25px;

        right: 25px;

        flex-direction: column;

        gap: 8px;

    }


    @media (max-width: 768px) {

    .studio-images {

        min-height: auto;

        display: grid;

        grid-template-columns: 1fr;

        gap: 20px;

    }


    .studio-photo {

        position: relative;

        width: 100%;

        right: auto;

        left: auto;

        top: auto;

    }


    .studio-photo-one {

        height: 500px;

    }


    .studio-photo-two {

        height: 420px;

    }


    .studio-photo img {

        object-position: center top;

    }

}


    .studio-words {

        gap: 15px;

        flex-wrap: wrap;

    }


    .connect-grid {

        margin-top: 55px;

    }


    .site-footer > span {

        line-height: 1.8;

    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;

        scroll-behavior:
            auto !important;

    }

}
/* =========================================================
   MUSIC CONTROL
========================================================= */

.music-control {

    position: fixed;

    right: 30px;

    bottom: 30px;

    z-index: 999;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 14px 18px;

    border:
        1px solid
        rgba(178, 138, 86, 0.45);

    background:
        rgba(5, 5, 5, 0.85);

    backdrop-filter:
        blur(12px);

    color:
        var(--white);

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 0.18em;

    cursor: pointer;

    opacity: 0;

    transform:
        translateY(20px);

    pointer-events: none;

    transition:
        opacity 0.4s ease,
        transform 0.4s var(--ease),
        background 0.3s ease;

}


.music-control.visible {

    opacity: 1;

    transform:
        translateY(0);

    pointer-events: auto;

}


.music-control:hover {

    background:
        rgba(178, 138, 86, 0.15);

}


.music-control i {

    font-size: 11px;

    color:
        var(--gold);

}
/* =========================================================
   ABOUT — ARTIST BIOGRAPHY
========================================================= */

.about-copy {

    width: 100%;

    max-width: 680px;

}


.section-kicker {

    display: flex;

    align-items: center;

    gap: 14px;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.3em;

    color: var(--gold);

}


.section-kicker span {

    width: 32px;

    height: 1px;

    background: var(--gold);

}


.about-title {

    margin-top: 35px;

    font-family:
        "Playfair Display",
        serif;

    font-size:

        clamp(
            50px,
            6vw,
            100px
        );

    font-weight: 500;

    line-height: 0.9;

    letter-spacing: -0.05em;

}


.about-title em {

    display: block;

    font-weight: 400;

    color: var(--gold);

}


.about-lead {

    max-width: 620px;

    margin-top: 40px;

    font-size:

        clamp(
            17px,
            1.4vw,
            22px
        );

    line-height: 1.8;

    color: rgba(255,255,255,0.82);

}


.about-lead strong {

    color: var(--white);

    font-weight: 600;

}


.about-details {

    margin-top: 35px;

}


.about-details p {

    margin-bottom: 22px;

    font-size: 14px;

    line-height: 1.9;

    color: var(--muted);

}


.about-facts {

    display: grid;

    grid-template-columns:

        repeat(
            3,
            1fr
        );

    gap: 15px;

    margin-top: 55px;

}


.about-fact {

    padding:

        22px
        18px;

    border:

        1px solid
        rgba(255,255,255,0.09);

    background:

        rgba(255,255,255,0.015);

}


.fact-label {

    display: block;

    margin-bottom: 12px;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 0.22em;

    color: var(--gold);

}


.about-fact strong {

    display: block;

    font-size: 9px;

    line-height: 1.7;

    letter-spacing: 0.12em;

    color: var(--white);

}
/* =========================================================
   ABOUT MUSIC STORY
========================================================= */

.about-music-story {

    max-width: 850px;

    margin:

        140px auto
        0;

    padding-top: 70px;

    border-top:

        1px solid
        rgba(255,255,255,0.1);

}


.story-number {

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.3em;

    color: var(--gold);

}


.about-music-story h3 {

    max-width: 800px;

    margin-top: 30px;

    font-family:
        "Playfair Display",
        serif;

    font-size:

        clamp(
            45px,
            7vw,
            100px
        );

    font-weight: 500;

    line-height: 0.9;

    letter-spacing: -0.05em;

}


.about-music-story h3 em {

    color: var(--gold);

    font-weight: 400;

}


.about-music-story p {

    max-width: 680px;

    margin-top: 35px;

    font-size: 15px;

    line-height: 1.9;

    color: var(--muted);

}
.song-list {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 40px;

}


.song-list span {

    padding:

        12px
        18px;

    border:

        1px solid
        rgba(178,138,86,0.3);

    font-size: 10px;

    letter-spacing: 0.12em;

    color: var(--white);

    transition:

        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;

}


.song-list span:hover {

    background:

        rgba(178,138,86,0.12);

    border-color:

        var(--gold);

    transform:

        translateY(-3px);

}
@media (max-width: 768px) {

    .about-title {

        font-size: 58px;

    }


    .about-lead {

        font-size: 16px;

        line-height: 1.8;

    }


    .about-details p {

        font-size: 14px;

    }


    .about-facts {

        grid-template-columns:
            1fr;

        gap: 10px;

    }


    .about-music-story {

        margin-top: 90px;

        padding-top: 50px;

    }


    .about-music-story h3 {

        font-size: 52px;

    }


    .song-list {

        gap: 8px;

    }


    .song-list span {

        font-size: 9px;

        padding:

            10px
            14px;

    }

}
/* =========================================================
   ABOUT — ARTIST PHOTO
========================================================= */

.about-artist-image {

    position: relative;

    display: flex;

    justify-content: flex-end;

    align-items: center;

}


.about-image-frame {

    position: relative;

    width: min(100%, 520px);

    height: 680px;

    overflow: hidden;

    background: #090909;

}


.about-image-frame img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    transition:
        transform 1.2s var(--ease);

}


.about-image-frame:hover img {

    transform:
        scale(1.04);

}


/* Elegant frame */

.about-image-frame::after {

    content: "";

    position: absolute;

    inset: 18px;

    border:

        1px solid
        rgba(178, 138, 86, 0.28);

    pointer-events: none;

}
/* =========================================================
   R JAY — BOOKING MODAL
========================================================= */

.booking-modal {

    position: fixed;

    inset: 0;

    z-index: 9999;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 30px;

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:

        opacity 0.45s ease,
        visibility 0.45s ease;

}


.booking-modal.active {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

}


.booking-modal-backdrop {

    position: absolute;

    inset: 0;

    background:
        rgba(0, 0, 0, 0.88);

    backdrop-filter:
        blur(14px);

}


/* =========================================================
   BOOKING PANEL
========================================================= */

.booking-modal-panel {

    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 1100px;

    max-height: 90vh;

    overflow-y: auto;

    padding:

        clamp(40px, 6vw, 90px);

    background:
        #080808;

    border:

        1px solid
        rgba(178, 138, 86, 0.28);

    box-shadow:
        0 40px 120px
        rgba(0, 0, 0, 0.8);

    transform:
        translateY(50px)
        scale(0.98);

    transition:

        transform 0.6s var(--ease);

}


.booking-modal.active
.booking-modal-panel {

    transform:
        translateY(0)
        scale(1);

}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.booking-close {

    position: absolute;

    top: 25px;

    right: 25px;

    width: 46px;

    height: 46px;

    border:

        1px solid
        rgba(255, 255, 255, 0.12);

    background:
        transparent;

    color:
        var(--white);

    cursor: pointer;

    transition:

        border-color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;

}


.booking-close:hover {

    border-color:
        var(--gold);

    background:
        rgba(178, 138, 86, 0.1);

    transform:
        rotate(90deg);

}


/* =========================================================
   HEADER
========================================================= */

.booking-modal-header {

    max-width: 600px;

    margin-bottom: 65px;

}


.booking-modal-header h2 {

    margin-top: 25px;

    font-family:
        "Playfair Display",
        serif;

    font-size:

        clamp(
            60px,
            9vw,
            120px
        );

    font-weight: 500;

    line-height: 0.82;

    letter-spacing: -0.06em;

}


.booking-modal-header p {

    max-width: 460px;

    margin-top: 30px;

    font-size: 14px;

    line-height: 1.8;

    color:
        var(--muted);

}


/* =========================================================
   FORM GRID
========================================================= */

.booking-grid {

    display: grid;

    grid-template-columns:

        repeat(
            2,
            minmax(0, 1fr)
        );

    gap:

        28px
        25px;

}


.booking-field {

    display: flex;

    flex-direction: column;

    gap: 12px;

}


.booking-field label {

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 0.22em;

    color:
        var(--gold);

}


/* =========================================================
   INPUTS
========================================================= */

.booking-field input,
.booking-field select,
.booking-field textarea {

    width: 100%;

    border: none;

    border-bottom:

        1px solid
        rgba(255, 255, 255, 0.18);

    border-radius: 0;

    padding:

        14px
        0;

    background:
        transparent;

    color:
        var(--white);

    font-family:
        inherit;

    font-size: 14px;

    outline: none;

    transition:

        border-color 0.3s ease;

}


.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {

    border-color:
        var(--gold);

}


.booking-field textarea {

    resize:
        vertical;

    min-height:
        130px;

}


.booking-field textarea::placeholder,
.booking-field input::placeholder {

    color:
        rgba(255, 255, 255, 0.32);

}


/* SELECT */

.booking-field select option {

    background:
        #111;

    color:
        #fff;

}


/* =========================================================
   MESSAGE
========================================================= */

.booking-message {

    margin-top:
        35px;

}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.booking-submit {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    margin-top: 45px;

    min-height: 60px;

    padding:

        0
        32px;

    border:

        1px solid
        var(--gold);

    background:
        rgba(178, 138, 86, 0.08);

    color:
        var(--white);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.2em;

    cursor: pointer;

    transition:

        background 0.35s ease,
        transform 0.35s var(--ease);

}


.booking-submit:hover {

    background:
        rgba(178, 138, 86, 0.2);

    transform:
        translateY(-4px);

}


/* =========================================================
   SUCCESS MESSAGE
========================================================= */

.booking-success {

    display: none;

    margin-top: 30px;

    padding:

        25px;

    border:

        1px solid
        rgba(178, 138, 86, 0.3);

    background:
        rgba(178, 138, 86, 0.05);

}


.booking-success.active {

    display: block;

}


.booking-success span {

    display: block;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.22em;

    color:
        var(--gold);

}


.booking-success p {

    margin-top: 12px;

    font-size: 13px;

    color:
        var(--muted);

}


/* =========================================================
   BOOKING MODAL — MOBILE
========================================================= */

@media (max-width: 768px) {

    .booking-modal {

        padding: 12px;

    }


    .booking-modal-panel {

        max-height: 94vh;

        padding:

            70px
            25px
            40px;

    }


    .booking-grid {

        grid-template-columns:
            1fr;

        gap:
            25px;

    }


    .booking-modal-header {

        margin-bottom:
            45px;

    }


    .booking-modal-header h2 {

        font-size:

            clamp(
                58px,
                17vw,
                90px
            );

    }


    .booking-close {

        top: 15px;

        right: 15px;

    }


    .booking-submit {

        width: 100%;

    }
.loader-title {
    padding-bottom: 40px !important;
    min-height: 1.2em;
}

.loader-letter {
    line-height: 1.15 !important;
}
}
.loader-title,
.loader-title *,
.loader-letter {
    overflow: visible !important;
}
