/* ==========================================================
   RANDIE O’NEIL — ARTIST LANDING PAGE
   Hero Foundation
========================================================== */

:root {
    --randie-dark: #07171b;
    --randie-dark-soft: #10262b;
    --randie-cream: #f3e4cf;
    --randie-champagne: #d8b98d;
    --randie-teal: #0f7f7b;
    --randie-teal-bright: #25b6ad;
    --randie-rose: #d44f72;
    --randie-rose-soft: #ef87a1;
    --randie-white: #fffaf2;
    --randie-muted: rgba(255, 250, 242, 0.72);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;

    background:
        radial-gradient(
            circle at 75% 10%,
            rgba(15, 127, 123, 0.12),
            transparent 38%
        ),
        linear-gradient(
            180deg,
            #07171b 0%,
            #0a191d 100%
        );

    color: var(--randie-white);
    font-family: "Inter", sans-serif;
}

/* ==========================================================
   TOP NAVIGATION
========================================================== */

.artist-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    z-index: 1000;

    border-bottom: 1px solid rgba(216, 185, 141, 0.15);

    background:
        linear-gradient(
            180deg,
            rgba(5, 16, 19, 0.92),
            rgba(5, 16, 19, 0.72)
        );

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.18);
}

.artist-nav-container {
    width: min(94%, 1500px);
   min-height: 92px;

    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;

    gap: 34px;

    margin: 0 auto;
}

.artist-monogram {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(216, 185, 141, 0.6);
    border-radius: 50%;

    color: var(--randie-champagne);
    text-decoration: none;

    font-family: "Cormorant Garamond", serif;
    font-size: 1.9rem;
    font-style: italic;
    font-weight: 700;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 24px rgba(216, 185, 141, 0.08);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.artist-monogram span {
    margin-left: 1px;

    color: var(--randie-rose);
    font-size: 0.65rem;
}

.artist-monogram:hover {
    transform: rotate(-4deg) scale(1.05);

    border-color: var(--randie-champagne);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 28px rgba(216, 185, 141, 0.2);
}

.artist-navigation {
    justify-self: center;
}

.artist-navigation ul {
    display: flex;
    align-items: center;

    gap: clamp(18px, 2.4vw, 40px);

    margin: 0;
    padding: 0;

    list-style: none;
}

.artist-navigation a {
    position: relative;

    color: rgba(255, 250, 242, 0.78);
    text-decoration: none;
    text-transform: uppercase;

    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;

    transition:
        color 0.3s ease,
        text-shadow 0.3s ease;
}

.artist-navigation a::after {
    content: "";

    position: absolute;
    left: 50%;
    bottom: -9px;

    width: 0;
    height: 1px;

    transform: translateX(-50%);

    background:
        linear-gradient(
            90deg,
            var(--randie-teal-bright),
            var(--randie-rose)
        );

    transition: width 0.3s ease;
}

.artist-navigation a:hover {
    color: var(--randie-white);

    text-shadow:
        0 0 14px rgba(37, 182, 173, 0.24);
}

.artist-navigation a:hover::after {
    width: 100%;
}

.artist-socials {
    display: flex;
    align-items: center;

    gap: 14px;
}

.artist-socials a {
    color: rgba(255, 250, 242, 0.76);
    text-decoration: none;

    font-size: 1rem;

    transition:
        color 0.3s ease,
        transform 0.3s ease,
        text-shadow 0.3s ease;
}

.artist-socials a:hover {
    color: var(--randie-rose-soft);

    transform: translateY(-2px);

    text-shadow:
        0 0 14px rgba(212, 79, 114, 0.34);
}

.artist-menu-button {
    display: none;

    width: 46px;
    height: 46px;

    padding: 10px;

    border: 1px solid rgba(37, 182, 173, 0.35);
    border-radius: 10px;

    background: rgba(15, 127, 123, 0.08);

    cursor: pointer;
}

.artist-menu-button span {
    display: block;

    width: 100%;
    height: 2px;

    margin: 5px 0;

    border-radius: 99px;

    background: var(--randie-teal-bright);

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

/* ==========================================================
   HERO
========================================================== */

.randie-hero {
    position: relative;

    min-height: 100vh;
    width: 100%;

    display: grid;
    grid-template-columns: minmax(420px, 0.95fr) minmax(520px, 1.05fr);
    align-items: stretch;

    padding-top: 138px;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(6, 20, 24, 0.2),
            rgba(6, 20, 24, 0.92) 62%,
            #07171b 100%
        );
}

.randie-hero::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 0;

    background:
        radial-gradient(
            circle at 70% 30%,
            rgba(15, 127, 123, 0.19),
            transparent 31%
        ),
        radial-gradient(
            circle at 88% 75%,
            rgba(212, 79, 114, 0.13),
            transparent 34%
        );

    pointer-events: none;
}

.randie-hero::after {
    content: "R";

    position: absolute;
    right: -2vw;
    bottom: -15vh;

    z-index: 0;

    color: rgba(216, 185, 141, 0.025);

    font-family: "Cormorant Garamond", serif;
    font-size: min(56vw, 760px);
    font-style: italic;
    font-weight: 700;
    line-height: 1;

    pointer-events: none;
}

.randie-hero-image {
    position: relative;

    z-index: 1;

min-height: calc(100vh - 138px);

    overflow: hidden;
}

.randie-hero-image::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            90deg,
            rgba(7, 23, 27, 0.02) 0%,
            rgba(7, 23, 27, 0.08) 55%,
            rgba(7, 23, 27, 0.96) 100%
        ),
        linear-gradient(
            0deg,
            rgba(7, 23, 27, 0.54),
            transparent 30%
        );

    pointer-events: none;
}

.randie-hero-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center 38%;

    filter:
        contrast(1.04)
        saturate(0.92)
        brightness(0.88);

    transform: scale(1.015);

    animation: randieHeroImageReveal 1.4s ease-out forwards;
}

.randie-hero-overlay {
    position: absolute;
    inset: 0;

    z-index: 2;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.07),
            rgba(0, 0, 0, 0.2)
        );
}

.randie-hero-content {
    position: relative;

    z-index: 4;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    max-width: 760px;

    padding:
        clamp(60px, 8vh, 110px)
        clamp(36px, 6vw, 100px)
        clamp(80px, 10vh, 130px)
        clamp(40px, 5vw, 88px);
}

.randie-eyebrow {
    margin: 0 0 16px;

    color: var(--randie-champagne);
    text-transform: uppercase;

    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 4px;

    opacity: 0;

    animation:
        randieTextReveal 0.8s ease-out 0.25s forwards;
}

.randie-hero h1 {
    margin: 0;

    font-family: "Cormorant Garamond", serif;
    font-weight: 700;
    line-height: 0.76;

    text-transform: uppercase;

    opacity: 0;

    animation:
        randieTextReveal 0.95s ease-out 0.4s forwards;
}

.randie-first-name,
.randie-last-name {
    display: block;
}

.randie-first-name {
    color: var(--randie-cream);

    font-size:
        clamp(5rem, 9.6vw, 9.6rem);

    letter-spacing:
        clamp(1px, 0.35vw, 6px);

    text-shadow:
        0 5px 25px rgba(0, 0, 0, 0.38),
        0 0 40px rgba(216, 185, 141, 0.06);
}

.randie-last-name {
    margin-left: clamp(28px, 5vw, 96px);

    color: var(--randie-white);

    font-size:
        clamp(4.9rem, 9vw, 9rem);

    letter-spacing:
        clamp(0px, 0.2vw, 4px);

    text-shadow:
        0 5px 25px rgba(0, 0, 0, 0.42),
        0 0 36px rgba(37, 182, 173, 0.08);
}

.randie-hero-tagline {
    margin: 34px 0 6px;

    color: var(--randie-rose-soft);

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.55rem, 2.2vw, 2.3rem);
    font-style: italic;
    font-weight: 600;
    letter-spacing: 1px;

    opacity: 0;

    animation:
        randieTextReveal 0.8s ease-out 0.62s forwards;
}

.randie-hero-description {
    max-width: 560px;

    margin: 0 0 30px;

    color: var(--randie-muted);

    font-size: clamp(0.96rem, 1.2vw, 1.08rem);
    line-height: 1.75;

    opacity: 0;

    animation:
        randieTextReveal 0.8s ease-out 0.72s forwards;
}

.randie-hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 14px;

    opacity: 0;

    animation:
        randieTextReveal 0.8s ease-out 0.82s forwards;
}

.randie-btn {
    min-width: 190px;
    min-height: 54px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 11px;

    padding: 0 26px;

    border-radius: 2px;

    color: var(--randie-white);
    text-decoration: none;
    text-transform: uppercase;

    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 2.3px;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.13),
        0 12px 30px rgba(0, 0, 0, 0.26);

    transition:
        transform 0.3s ease,
        filter 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.randie-btn-primary {
    border: 1px solid rgba(37, 182, 173, 0.7);

    background:
        linear-gradient(
            135deg,
            #0e6767,
            #12958f
        );
}

.randie-btn-secondary {
    border: 1px solid rgba(212, 79, 114, 0.76);

    background:
        linear-gradient(
            135deg,
            rgba(212, 79, 114, 0.16),
            rgba(7, 23, 27, 0.7)
        );
}

.randie-btn:hover {
    transform: translateY(-4px);

    filter: brightness(1.1);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.17),
        0 16px 38px rgba(0, 0, 0, 0.34);
}

.randie-streaming-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 18px;

    margin-top: 26px;

    color: rgba(255, 250, 242, 0.52);

    font-size: 0.77rem;
    font-weight: 700;
    letter-spacing: 0.5px;

    opacity: 0;

    animation:
        randieTextReveal 0.8s ease-out 0.95s forwards;
}

.randie-streaming-row > span {
    text-transform: uppercase;
    letter-spacing: 2px;
}

.randie-streaming-row a {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: rgba(255, 250, 242, 0.72);
    text-decoration: none;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.randie-streaming-row a:hover {
    color: var(--randie-white);

    transform: translateY(-2px);
}

.randie-signature {
    position: absolute;
    right: clamp(38px, 7vw, 130px);
    bottom: clamp(90px, 12vh, 150px);

    z-index: 4;

    transform: rotate(-5deg);

    color: var(--randie-rose);

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.8rem, 3vw, 3.1rem);
    font-style: italic;

    text-shadow:
        0 0 20px rgba(212, 79, 114, 0.24);

    opacity: 0;

    animation:
        randieSignatureReveal 1s ease-out 1.05s forwards;
}

.randie-scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 28px;

    z-index: 5;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 6px;

    transform: translateX(-50%);

    color: rgba(255, 250, 242, 0.52);
    text-decoration: none;
    text-transform: uppercase;

    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.randie-scroll-cue i {
    color: var(--randie-teal-bright);

    animation:
        randieScrollBounce 1.8s ease-in-out infinite;
}

/* ==========================================================
   TEMPORARY PLACEHOLDER SECTIONS
========================================================== */

.randie-coming-section {
    min-height: 44vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 90px 24px;

    border-top: 1px solid rgba(216, 185, 141, 0.09);

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.018),
            transparent
        );
}

.randie-coming-section p {
    margin: 0;

    color: rgba(255, 250, 242, 0.32);
    text-align: center;
    text-transform: uppercase;

    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 4px;
}

/* ==========================================================
   ANIMATIONS
========================================================== */

@keyframes randieHeroImageReveal {
    from {
        opacity: 0;
        transform: scale(1.08);
    }

    to {
        opacity: 1;
        transform: scale(1.015);
    }
}

@keyframes randieTextReveal {
    from {
        opacity: 0;
        transform: translateY(26px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes randieSignatureReveal {
    from {
        opacity: 0;
        transform:
            rotate(-5deg)
            translateY(24px);
    }

    to {
        opacity: 0.92;
        transform:
            rotate(-5deg)
            translateY(0);
    }
}

@keyframes randieScrollBounce {
    0%,
    100% {
        transform: translateY(0);
        opacity: 0.55;
    }

    50% {
        transform: translateY(7px);
        opacity: 1;
    }
}

/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1100px) {

    .artist-nav-container {
        grid-template-columns: auto 1fr auto;

        gap: 20px;
    }

    .artist-navigation ul {
        gap: 18px;
    }

    .artist-navigation a {
        font-size: 0.66rem;
        letter-spacing: 1.4px;
    }

    .artist-socials {
        display: none;
    }

    .randie-hero {
        grid-template-columns:
            minmax(360px, 0.92fr)
            minmax(460px, 1.08fr);
    }

    .randie-hero-content {
        padding-left: 36px;
        padding-right: 32px;
    }

    .randie-signature {
        right: 38px;
    }
}

/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 768px) {

    .artist-nav-container {
        min-height: 70px;

        grid-template-columns: auto auto;

        justify-content: space-between;

        width: calc(100% - 32px);
    }

    .artist-monogram {
        width: 44px;
        height: 44px;

        font-size: 1.6rem;
    }

    .artist-menu-button {
        display: block;
    }

    .artist-navigation {
        position: fixed;
        top: 70px;
        left: 16px;
        right: 16px;

        display: none;

        padding: 20px;

        border: 1px solid rgba(37, 182, 173, 0.2);
        border-radius: 14px;

        background:
            linear-gradient(
                150deg,
                rgba(10, 30, 34, 0.98),
                rgba(5, 16, 19, 0.98)
            );

        box-shadow:
            0 24px 55px rgba(0, 0, 0, 0.42);

        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .artist-navigation.mobile-open {
        display: block;
    }

    .artist-navigation ul {
        flex-direction: column;
        align-items: stretch;

        gap: 0;
    }

    .artist-navigation a {
        display: block;

        padding: 14px 10px;

        border-bottom: 1px solid rgba(255, 255, 255, 0.06);

        font-size: 0.72rem;
    }

    .artist-navigation li:last-child a {
        border-bottom: none;
    }

    .artist-navigation a::after {
        display: none;
    }

    .randie-hero {
        min-height: auto;

        display: flex;
        flex-direction: column;

        padding-top: 70px;

        background:
            linear-gradient(
                180deg,
                rgba(7, 23, 27, 0.06),
                #07171b 48%
            );
    }

    .randie-hero::after {
        right: -14vw;
        bottom: 8vh;

        font-size: 96vw;
    }

    .randie-hero-image {
        width: 100%;
        height: 58vh;
        min-height: 430px;
    }

    .randie-hero-image::before {
        background:
            linear-gradient(
                180deg,
                rgba(7, 23, 27, 0.02) 0%,
                rgba(7, 23, 27, 0.04) 54%,
                rgba(7, 23, 27, 0.98) 100%
            );
    }

    .randie-hero-image img {
        object-position: center 34%;
    }

    .randie-hero-content {
        width: 100%;
        max-width: none;

        align-items: center;

        margin-top: -92px;
        padding:
            0
            22px
            120px;

        text-align: center;
    }

    .randie-eyebrow {
        margin-bottom: 18px;

        font-size: 0.64rem;
        letter-spacing: 2.7px;
    }

    .randie-hero h1 {
        width: 100%;
    }

    .randie-first-name,
    .randie-last-name {
        margin-left: 0;

        font-size:
            clamp(4.6rem, 20vw, 7rem);

        line-height: 0.82;
    }

    .randie-hero-tagline {
        margin-top: 28px;
    }

    .randie-hero-description {
        max-width: 460px;
    }

    .randie-hero-buttons {
        justify-content: center;

        width: 100%;
    }

    .randie-btn {
        min-width: min(100%, 280px);
    }

    .randie-streaming-row {
        justify-content: center;

        max-width: 360px;
    }

    .randie-signature {
        position: absolute;
        right: 50%;
        bottom: 72px;

        transform: translateX(50%) rotate(-4deg);

        white-space: nowrap;

        font-size: 2rem;
    }

    @keyframes randieSignatureReveal {
        from {
            opacity: 0;
            transform:
                translateX(50%)
                rotate(-4deg)
                translateY(20px);
        }

        to {
            opacity: 0.9;
            transform:
                translateX(50%)
                rotate(-4deg)
                translateY(0);
        }
    }

    .randie-scroll-cue {
        bottom: 22px;
    }

    .randie-coming-section {
        min-height: 32vh;

        padding: 70px 20px;
    }
}

/* ==========================================================
   SMALL PHONES
========================================================== */

@media (max-width: 430px) {

    .randie-hero-image {
        height: 54vh;
        min-height: 390px;
    }

    .randie-hero-content {
        margin-top: -76px;

        padding-left: 16px;
        padding-right: 16px;
    }

    .randie-first-name,
    .randie-last-name {
        font-size:
            clamp(4rem, 19vw, 5.7rem);
    }

    .randie-hero-tagline {
        font-size: 1.55rem;
    }

    .randie-hero-description {
        font-size: 0.92rem;
    }

    .randie-btn {
        width: 100%;
    }

    .randie-streaming-row {
        gap: 12px;

        font-size: 0.68rem;
    }

    .randie-streaming-row > span {
        width: 100%;
    }
}

/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==========================================================
   FEATURED RELEASE
========================================================== */

.featured-release {
    position: relative;
    z-index: 5;

    padding: 72px 32px;

    border-top: 1px solid rgba(216, 185, 141, 0.18);
    border-bottom: 1px solid rgba(216, 185, 141, 0.14);

    background:
        radial-gradient(
            circle at 20% 50%,
            rgba(15, 127, 123, 0.13),
            transparent 36%
        ),
        radial-gradient(
            circle at 85% 30%,
            rgba(212, 79, 114, 0.1),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #091b20,
            #11151c
        );
}

.featured-release-inner {
    width: min(100%, 1380px);

    display: grid;
    grid-template-columns:
        minmax(280px, 0.85fr)
        minmax(360px, 1.25fr)
        minmax(240px, 0.7fr);

    align-items: center;

    gap: 52px;

    margin: 0 auto;
}

.featured-release-image {
    position: relative;

    min-height: 480px;

    overflow: hidden;

    border: 1px solid rgba(216, 185, 141, 0.3);
    border-radius: 4px;

    box-shadow:
        0 24px 55px rgba(0, 0, 0, 0.42),
        0 0 35px rgba(15, 127, 123, 0.08);
}

.featured-release-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    filter:
        contrast(1.04)
        saturate(0.92)
        brightness(0.9);
}

.featured-release-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(7, 23, 27, 0.72)
        );

    pointer-events: none;
}

.featured-release-image-glow {
    position: absolute;
    inset: auto 10% -25px;

    height: 70px;

    background:
        radial-gradient(
            ellipse,
            rgba(37, 182, 173, 0.35),
            transparent 68%
        );

    filter: blur(20px);
}

.featured-release-label {
    display: flex;
    align-items: center;

    gap: 10px;

    margin: 0 0 12px;

    color: var(--randie-champagne);

    text-transform: uppercase;

    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 3px;
}

.featured-release-label i {
    color: var(--randie-rose);
}

.featured-release-content h2 {
    margin: 0 0 12px;

    color: var(--randie-cream);

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3.7rem, 6vw, 6.2rem);
    font-weight: 700;
    line-height: 0.92;
    text-transform: uppercase;

    text-shadow:
        0 5px 25px rgba(0, 0, 0, 0.38);
}

.featured-release-subtitle {
    max-width: 650px;

    margin: 0 0 18px;

    color: var(--randie-rose-soft);

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.35rem, 2vw, 1.9rem);
    font-style: italic;
    font-weight: 600;
    line-height: 1.3;
}

.featured-release-description {
    max-width: 630px;

    margin: 0 0 28px;

    color: rgba(255, 250, 242, 0.69);

    font-size: 1rem;
    line-height: 1.8;
}

.featured-release-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;
}

.featured-release-quote {
    position: relative;

    padding: 38px 30px;

    border-left: 1px solid rgba(216, 185, 141, 0.3);

    color: rgba(255, 250, 242, 0.78);
}

.featured-quote-mark {
    display: block;

    height: 58px;

    color: var(--randie-rose);

    font-family: "Cormorant Garamond", serif;
    font-size: 5.5rem;
    line-height: 1;
}

.featured-release-quote p {
    margin: 0 0 18px;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.55rem, 2.3vw, 2.15rem);
    font-style: italic;
    line-height: 1.35;
}

.featured-quote-signature {
    color: var(--randie-champagne);

    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Tablet */

@media (max-width: 1050px) {

    .featured-release-inner {
        grid-template-columns:
            minmax(280px, 0.9fr)
            minmax(360px, 1.1fr);
    }

    .featured-release-quote {
        grid-column: 1 / -1;

        padding: 28px 0 0;

        border-top: 1px solid rgba(216, 185, 141, 0.2);
        border-left: none;

        text-align: center;
    }
}

/* Mobile */

@media (max-width: 768px) {

    .featured-release {
        padding: 54px 20px;
    }

    .featured-release-inner {
        display: flex;
        flex-direction: column;

        gap: 34px;
    }

    .featured-release-image {
        width: min(100%, 430px);
        min-height: 520px;
    }

    .featured-release-content {
        text-align: center;
    }

    .featured-release-label,
    .featured-release-buttons {
        justify-content: center;
    }

    .featured-release-content h2 {
        font-size: clamp(3.5rem, 16vw, 5rem);
    }

    .featured-release-description {
        margin-left: auto;
        margin-right: auto;
    }

    .featured-release-quote {
        width: 100%;
    }
}

/* ==========================================================
   MUSIC & VIDEOS
========================================================== */

.music-videos-section {
    position: relative;
    padding: 92px 32px 105px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 15% 15%,
            rgba(15, 127, 123, 0.12),
            transparent 28%
        ),
        radial-gradient(
            circle at 88% 85%,
            rgba(212, 79, 114, 0.09),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #07171b,
            #0b1519
        );
}

.music-videos-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    background:
        linear-gradient(
            115deg,
            transparent 25%,
            rgba(255, 255, 255, 0.018) 50%,
            transparent 75%
        );
}

.music-videos-inner {
    position: relative;
    z-index: 2;
    width: min(100%, 1460px);
    margin: 0 auto;
}

.music-videos-heading {
    max-width: 780px;
    margin: 0 auto 48px;
    text-align: center;
}

.music-videos-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    margin: 0 0 14px;

    color: var(--randie-champagne);

    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.music-videos-label i {
    color: var(--randie-rose);
    font-size: 0.65rem;
}

.music-videos-heading h2 {
    margin: 0;

    color: var(--randie-cream);

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3.4rem, 6vw, 6rem);
    font-weight: 700;
    line-height: 0.95;
    text-transform: uppercase;
}

.music-videos-heading h2 span {
    display: block;

    color: var(--randie-rose-soft);

    font-style: italic;
    text-transform: none;
}

.music-videos-heading > p:last-child {
    margin: 18px 0 0;

    color: rgba(255, 250, 242, 0.6);

    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.music-video-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.music-video-card {
    position: relative;
    overflow: hidden;

    border: 1px solid rgba(216, 185, 141, 0.18);
    border-radius: 4px;

    background:
        linear-gradient(
            160deg,
            rgba(18, 35, 39, 0.96),
            rgba(8, 18, 22, 0.98)
        );

    box-shadow:
        0 18px 42px rgba(0, 0, 0, 0.34);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.music-video-card:hover {
    transform: translateY(-8px);

    border-color: rgba(37, 182, 173, 0.5);

    box-shadow:
        0 25px 55px rgba(0, 0, 0, 0.46),
        0 0 25px rgba(37, 182, 173, 0.1);
}

.music-video-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.music-video-image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            transparent 42%,
            rgba(7, 23, 27, 0.82)
        );
}

.music-video-image img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    object-position: center;

    filter:
        contrast(1.03)
        saturate(0.92)
        brightness(0.88);

    transition:
        transform 0.55s ease,
        filter 0.4s ease;
}

.music-video-card:hover .music-video-image img {
    transform: scale(1.06);

    filter:
        contrast(1.05)
        saturate(1)
        brightness(0.98);
}

.music-video-play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;

    width: 64px;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    transform: translate(-50%, -50%);

    border: 1px solid rgba(255, 250, 242, 0.68);
    border-radius: 50%;

    background: rgba(7, 23, 27, 0.72);

    color: var(--randie-white);
    text-decoration: none;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    box-shadow:
        0 0 0 8px rgba(255, 255, 255, 0.035),
        0 10px 30px rgba(0, 0, 0, 0.35);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.music-video-play i {
    margin-left: 3px;
}

.music-video-play:hover {
    transform:
        translate(-50%, -50%)
        scale(1.1);

    border-color: var(--randie-teal-bright);
    background: var(--randie-teal);

    box-shadow:
        0 0 0 9px rgba(37, 182, 173, 0.08),
        0 0 28px rgba(37, 182, 173, 0.32);
}

.music-video-content {
    padding: 23px 24px 25px;
}

.music-video-content p {
    margin: 0 0 8px;

    color: var(--randie-rose-soft);

    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 2.7px;
    text-transform: uppercase;
}

.music-video-content h3 {
    margin: 0 0 18px;

    color: var(--randie-cream);

    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.music-video-content > a {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: rgba(255, 250, 242, 0.68);

    text-decoration: none;
    text-transform: uppercase;

    font-size: 0.69rem;
    font-weight: 800;
    letter-spacing: 2px;

    transition:
        color 0.3s ease,
        gap 0.3s ease;
}

.music-video-content > a i {
    color: var(--randie-teal-bright);
}

.music-video-content > a:hover {
    gap: 13px;
    color: var(--randie-white);
}

/* Tablet */

@media (max-width: 1050px) {

    .music-video-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Mobile */

@media (max-width: 700px) {

    .music-videos-section {
        padding: 70px 18px 80px;
    }

    .music-video-grid {
        display: flex;
        gap: 16px;

        width: calc(100% + 36px);
        margin-left: -18px;

        padding:
            8px
            max(18px, calc((100vw - min(84vw, 360px)) / 2))
            24px;

        overflow-x: auto;

        scroll-snap-type: x mandatory;
        scrollbar-width: none;

        -webkit-overflow-scrolling: touch;
    }

    .music-video-grid::-webkit-scrollbar {
        display: none;
    }

    .music-video-card {
        flex: 0 0 min(84vw, 360px);
        width: min(84vw, 360px);

        scroll-snap-align: center;
        scroll-snap-stop: always;
    }

    .music-videos-heading {
        margin-bottom: 34px;
    }

    .music-videos-heading h2 {
        font-size: clamp(3rem, 14vw, 4.6rem);
    }

    .music-video-content h3 {
        font-size: 1.8rem;
    }
}

/* ==========================================================
   ABOUT RANDIE
========================================================== */

.randie-about-section {
    position: relative;
    padding: 110px 32px;
    overflow: hidden;

    border-top: 1px solid rgba(216, 185, 141, 0.12);

    background:
        radial-gradient(
            circle at 82% 30%,
            rgba(212, 79, 114, 0.1),
            transparent 34%
        ),
        radial-gradient(
            circle at 12% 75%,
            rgba(15, 127, 123, 0.12),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #10151b,
            #07191d
        );
}

.randie-about-inner {
    position: relative;
    z-index: 2;

    width: min(100%, 1300px);

    display: grid;
    grid-template-columns:
        minmax(320px, 0.85fr)
        minmax(440px, 1.15fr);

    align-items: center;

    gap: 90px;

    margin: 0 auto;
}

.randie-about-image {
    position: relative;

    min-height: 650px;

    padding: 18px;
}

.randie-about-image img {
    position: relative;
    z-index: 2;

    width: 100%;
    height: 650px;

    display: block;

    object-fit: cover;
    object-position: center;

    border: 1px solid rgba(216, 185, 141, 0.3);

    box-shadow:
        0 30px 65px rgba(0, 0, 0, 0.46);

    filter:
        contrast(1.03)
        saturate(0.92)
        brightness(0.92);
}

.randie-about-image-frame {
    position: absolute;
    top: 0;
    left: 0;

    width: calc(100% - 36px);
    height: calc(100% - 36px);

    border: 1px solid rgba(37, 182, 173, 0.34);

    pointer-events: none;
}

.randie-about-image-caption {
    position: absolute;
    right: -35px;
    bottom: 60px;

    z-index: 3;

    margin: 0;

    color: var(--randie-rose-soft);

    font-family: "Cormorant Garamond", serif;
    font-size: 1.6rem;
    font-style: italic;

    transform: rotate(-90deg);
    transform-origin: center;
}

.randie-about-label {
    display: flex;
    align-items: center;

    gap: 11px;

    margin: 0 0 14px;

    color: var(--randie-champagne);

    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 3.5px;
    text-transform: uppercase;
}

.randie-about-label i {
    color: var(--randie-rose);
}

.randie-about-content h2 {
    max-width: 720px;

    margin: 0 0 25px;

    color: var(--randie-cream);

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3.6rem, 6vw, 6.2rem);
    font-weight: 700;
    line-height: 0.92;
    text-transform: uppercase;
}

.randie-about-content h2 span {
    display: block;

    color: var(--randie-rose-soft);

    font-style: italic;
    text-transform: none;
}

.randie-about-lead {
    max-width: 680px;

    margin: 0 0 20px;

    color: var(--randie-champagne);

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.4rem, 2vw, 1.9rem);
    font-style: italic;
    font-weight: 600;
    line-height: 1.4;
}

.randie-about-content > p:not(.randie-about-label):not(.randie-about-lead) {
    max-width: 680px;

    margin: 0 0 18px;

    color: rgba(255, 250, 242, 0.68);

    font-size: 1rem;
    line-height: 1.85;
}

.randie-about-details {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 18px;

    margin: 34px 0;
}

.randie-about-details div {
    padding: 19px 17px;

    border-top: 1px solid rgba(216, 185, 141, 0.3);
    border-bottom: 1px solid rgba(216, 185, 141, 0.12);

    background: rgba(255, 255, 255, 0.018);
}

.randie-about-details span {
    display: block;

    margin-bottom: 8px;

    color: var(--randie-rose-soft);

    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.randie-about-details strong {
    color: rgba(255, 250, 242, 0.84);

    font-family: "Cormorant Garamond", serif;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.25;
}

/* Tablet */

@media (max-width: 1000px) {

    .randie-about-inner {
        gap: 50px;
    }

    .randie-about-image,
    .randie-about-image img {
        min-height: 560px;
        height: 560px;
    }

    .randie-about-details {
        grid-template-columns: 1fr;
    }
}

/* Mobile */

@media (max-width: 760px) {

    .randie-about-section {
        padding: 76px 20px;
    }

    .randie-about-inner {
        display: flex;
        flex-direction: column;

        gap: 48px;
    }

    .randie-about-image {
        width: min(100%, 430px);
        min-height: 540px;

        padding: 12px;
    }

    .randie-about-image img {
        height: 540px;
        min-height: 540px;
    }

    .randie-about-image-caption {
        right: -48px;
        bottom: 70px;

        font-size: 1.3rem;
    }

    .randie-about-content {
        text-align: center;
    }

    .randie-about-label {
        justify-content: center;
    }

    .randie-about-content h2 {
        font-size: clamp(3.2rem, 14vw, 5rem);
    }

    .randie-about-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .randie-about-details {
        text-align: left;
    }
}

/* ==========================================================
   FEATURED VIDEO
========================================================== */

.featured-video-section {
    position: relative;

    padding: 105px 32px 120px;

    overflow: hidden;

    border-top: 1px solid rgba(216, 185, 141, 0.12);

    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(15, 127, 123, 0.13),
            transparent 34%
        ),
        radial-gradient(
            circle at 82% 78%,
            rgba(212, 79, 114, 0.09),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #07171b,
            #11151c
        );
}

.featured-video-inner {
    position: relative;
    z-index: 2;

    width: min(100%, 1320px);

    margin: 0 auto;
}

.featured-video-heading {
    max-width: 800px;

    margin: 0 auto 44px;

    text-align: center;
}

.featured-video-label {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    margin: 0 0 15px;

    color: var(--randie-champagne);

    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.featured-video-label i {
    color: var(--randie-rose);

    font-size: 0.65rem;
}

.featured-video-heading h2 {
    margin: 0;

    color: var(--randie-cream);

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3.7rem, 6vw, 6.3rem);
    font-weight: 700;
    line-height: 0.92;
    text-transform: uppercase;
}

.featured-video-heading h2 span {
    display: block;

    color: var(--randie-rose-soft);

    font-style: italic;
    text-transform: none;
}

.featured-video-heading > p:last-child {
    margin: 18px 0 0;

    color: rgba(255, 250, 242, 0.62);

    font-size: 0.95rem;
}

.featured-video-frame {
    position: relative;

    aspect-ratio: 16 / 8.5;

    overflow: hidden;

    border: 1px solid rgba(216, 185, 141, 0.28);
    border-radius: 4px;

    background: #07171b;

    box-shadow:
        0 34px 75px rgba(0, 0, 0, 0.52),
        0 0 35px rgba(37, 182, 173, 0.07);
}

.featured-video-frame img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    filter:
        contrast(1.04)
        saturate(0.92)
        brightness(0.75);

    transition:
        transform 0.7s ease,
        filter 0.5s ease;
}

.featured-video-frame:hover img {
    transform: scale(1.025);

    filter:
        contrast(1.05)
        saturate(1)
        brightness(0.86);
}

.featured-video-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(4, 15, 18, 0.84),
            rgba(4, 15, 18, 0.16) 48%,
            rgba(4, 15, 18, 0.45)
        ),
        linear-gradient(
            180deg,
            transparent 48%,
            rgba(4, 15, 18, 0.82)
        );

    pointer-events: none;
}

.featured-video-play {
    position: absolute;
    left: 50%;
    top: 50%;

    z-index: 4;

    width: 92px;
    height: 92px;

    display: flex;
    align-items: center;
    justify-content: center;

    transform: translate(-50%, -50%);

    border: 1px solid rgba(255, 250, 242, 0.8);
    border-radius: 50%;

    background: rgba(7, 23, 27, 0.74);

    color: var(--randie-white);
    text-decoration: none;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow:
        0 0 0 12px rgba(255, 255, 255, 0.035),
        0 18px 45px rgba(0, 0, 0, 0.45);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.featured-video-play i {
    margin-left: 5px;

    font-size: 1.35rem;
}

.featured-video-play:hover {
    transform:
        translate(-50%, -50%)
        scale(1.08);

    border-color: var(--randie-teal-bright);

    background: var(--randie-teal);

    box-shadow:
        0 0 0 14px rgba(37, 182, 173, 0.08),
        0 0 38px rgba(37, 182, 173, 0.32);
}

.featured-video-info {
    position: absolute;
    left: 42px;
    bottom: 34px;

    z-index: 4;
}

.featured-video-info p {
    margin: 0 0 7px;

    color: var(--randie-rose-soft);

    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.featured-video-info h3 {
    margin: 0 0 4px;

    color: var(--randie-cream);

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.4rem, 4vw, 4rem);
    font-weight: 700;
    line-height: 1;
}

.featured-video-info span {
    color: rgba(255, 250, 242, 0.65);

    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Mobile */

@media (max-width: 760px) {

    .featured-video-section {
        padding: 76px 18px 86px;
    }

    .featured-video-heading {
        margin-bottom: 34px;
    }

    .featured-video-heading h2 {
        font-size: clamp(3.1rem, 14vw, 5rem);
    }

    .featured-video-frame {
        aspect-ratio: 4 / 5;
    }

    .featured-video-play {
        width: 74px;
        height: 74px;
    }

    .featured-video-info {
        left: 24px;
        right: 24px;
        bottom: 24px;
    }

    .featured-video-info h3 {
        font-size: 2.5rem;
    }
}


/* ==========================================================
   THE RANCH
========================================================== */

.ranch-section {
    position: relative;

    padding: 110px 32px;

    overflow: hidden;

    border-top: 1px solid rgba(216, 185, 141, 0.14);
    border-bottom: 1px solid rgba(216, 185, 141, 0.12);

    background:
        radial-gradient(
            circle at 12% 35%,
            rgba(212, 79, 114, 0.1),
            transparent 30%
        ),
        radial-gradient(
            circle at 88% 65%,
            rgba(15, 127, 123, 0.13),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #10151b,
            #07191d
        );
}

.ranch-inner {
    position: relative;
    z-index: 2;

    width: min(100%, 1420px);

    display: grid;
   grid-template-columns:
    minmax(320px, 0.9fr)
    minmax(360px, 1fr)
    minmax(420px, 1.25fr);

    align-items: center;

    gap: 58px;

    margin: 0 auto;
}

.ranch-logo-column {
    text-align: center;
}

.ranch-label {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    margin: 0 0 24px;

    color: var(--randie-champagne);

    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.ranch-label i {
    color: var(--randie-rose);
}

.ranch-logo {
    width: min(120%, 390px);

    display: block;

    margin: 0 auto;

    filter:
        drop-shadow(0 22px 35px rgba(0, 0, 0, 0.4));
}

.ranch-content h2 {
    margin: 0 0 22px;

    color: var(--randie-cream);

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3.7rem, 5.5vw, 6rem);
    font-weight: 700;
    line-height: 0.92;
    text-transform: uppercase;
}

.ranch-content h2 span {
    display: block;

    color: var(--randie-rose-soft);

    font-style: italic;
    text-transform: none;
}

.ranch-lead {
    margin: 0 0 19px;

    color: var(--randie-champagne);

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    font-style: italic;
    font-weight: 600;
    line-height: 1.4;
}

.ranch-content > p:not(.ranch-lead) {
    margin: 0 0 30px;

    color: rgba(255, 250, 242, 0.68);

    font-size: 1rem;
    line-height: 1.85;
}

.ranch-video {
    position: relative;

    aspect-ratio: 16 / 10;

    overflow: hidden;

    border: 1px solid rgba(216, 185, 141, 0.28);
    border-radius: 4px;

    background: #07171b;

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.48),
        0 0 30px rgba(37, 182, 173, 0.08);
}

.ranch-video img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    filter:
        contrast(1.04)
        saturate(0.92)
        brightness(0.76);

    transition:
        transform 0.6s ease,
        filter 0.4s ease;
}

.ranch-video:hover img {
    transform: scale(1.035);

    filter:
        contrast(1.05)
        saturate(1)
        brightness(0.88);
}

.ranch-video-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(7, 23, 27, 0.08),
            rgba(7, 23, 27, 0.84)
        );

    pointer-events: none;
}

.ranch-video-play {
    position: absolute;
    left: 50%;
    top: 48%;

    z-index: 3;

    width: 78px;
    height: 78px;

    display: flex;
    align-items: center;
    justify-content: center;

    transform: translate(-50%, -50%);

    border: 1px solid rgba(255, 250, 242, 0.78);
    border-radius: 50%;

    background: rgba(7, 23, 27, 0.75);

    color: var(--randie-white);
    text-decoration: none;

    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);

    box-shadow:
        0 0 0 10px rgba(255, 255, 255, 0.035),
        0 15px 38px rgba(0, 0, 0, 0.42);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}

.ranch-video-play i {
    margin-left: 4px;
}

.ranch-video-play:hover {
    transform:
        translate(-50%, -50%)
        scale(1.08);

    border-color: var(--randie-teal-bright);

    background: var(--randie-teal);
}

.ranch-video-caption {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 24px;

    z-index: 3;
}

.ranch-video-caption span {
    display: block;

    margin-bottom: 5px;

    color: var(--randie-rose-soft);

    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.ranch-video-caption strong {
    color: var(--randie-cream);

    font-family: "Cormorant Garamond", serif;
    font-size: 2.3rem;
    font-weight: 700;
}

/* Tablet */

@media (max-width: 1100px) {

    .ranch-inner {
        grid-template-columns:
            minmax(250px, 0.8fr)
            minmax(420px, 1.2fr);
    }

    .ranch-logo-column {
        grid-column: 1;
    }

    .ranch-content {
        grid-column: 2;
    }

    .ranch-video {
        grid-column: 1 / -1;

        width: min(100%, 900px);

        margin: 10px auto 0;
    }
}

/* Mobile */

@media (max-width: 760px) {

    .ranch-section {
        padding: 76px 20px;
    }

    .ranch-inner {
        display: flex;
        flex-direction: column;

        gap: 42px;
    }

    .ranch-logo {
        width: min(80%, 280px);
    }

    .ranch-content {
        text-align: center;
    }

    .ranch-content h2 {
        font-size: clamp(3.2rem, 14vw, 5rem);
    }

    .ranch-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .ranch-video {
        width: 100%;

        aspect-ratio: 4 / 5;
    }

    .ranch-video-play {
        width: 70px;
        height: 70px;
    }

    .ranch-video-caption {
        left: 22px;
        right: 22px;
        bottom: 20px;
    }
}

/* ==========================================================
   BOOKING / CONTACT
========================================================== */

.booking-section {
    position: relative;
    padding: 110px 32px;
    overflow: hidden;

    border-top: 1px solid rgba(216, 185, 141, 0.14);

    background:
        radial-gradient(
            circle at 18% 28%,
            rgba(15, 127, 123, 0.13),
            transparent 32%
        ),
        radial-gradient(
            circle at 88% 76%,
            rgba(212, 79, 114, 0.1),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #07191d,
            #11151c
        );
}

.booking-inner {
    position: relative;
    z-index: 2;

    width: min(100%, 1280px);

    display: grid;
    grid-template-columns:
        minmax(360px, 0.9fr)
        minmax(500px, 1.1fr);

    align-items: center;

    gap: 80px;

    margin: 0 auto;
}

.booking-label {
    display: flex;
    align-items: center;
    gap: 11px;

    margin: 0 0 14px;

    color: var(--randie-champagne);

    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 3.5px;
    text-transform: uppercase;
}

.booking-label i {
    color: var(--randie-rose);
}

.booking-intro h2 {
    margin: 0 0 24px;

    color: var(--randie-cream);

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3.7rem, 6vw, 6.2rem);
    font-weight: 700;
    line-height: 0.92;
    text-transform: uppercase;
}

.booking-intro h2 span {
    display: block;

    color: var(--randie-rose-soft);

    font-style: italic;
    text-transform: none;
}

.booking-lead {
    max-width: 620px;

    margin: 0 0 34px;

    color: var(--randie-champagne);

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.35rem, 2vw, 1.9rem);
    font-style: italic;
    line-height: 1.45;
}

.booking-contact-details {
    display: grid;
    gap: 14px;
}

.booking-contact-details div {
    display: flex;
    align-items: center;
    gap: 14px;

    padding: 16px 18px;

    border: 1px solid rgba(216, 185, 141, 0.14);

    background: rgba(255, 255, 255, 0.02);
}

.booking-contact-details i {
    width: 20px;

    color: var(--randie-teal-bright);

    text-align: center;
}

.booking-contact-details span {
    color: rgba(255, 250, 242, 0.78);

    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.4px;
}

.booking-form {
    padding: 36px;

    border: 1px solid rgba(216, 185, 141, 0.2);
    border-radius: 4px;

    background:
        linear-gradient(
            160deg,
            rgba(18, 35, 39, 0.96),
            rgba(8, 18, 22, 0.98)
        );

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.42);
}

.booking-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 18px;
}

.booking-field {
    margin-bottom: 20px;
}

.booking-field label {
    display: block;

    margin-bottom: 9px;

    color: var(--randie-rose-soft);

    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.booking-field input,
.booking-field select,
.booking-field textarea {
    width: 100%;

    padding: 15px 16px;

    border: 1px solid rgba(216, 185, 141, 0.18);
    border-radius: 2px;

    background: rgba(255, 255, 255, 0.035);

    color: var(--randie-white);

    font: inherit;

    outline: none;

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.booking-field textarea {
    resize: vertical;
}

.booking-field input::placeholder,
.booking-field textarea::placeholder {
    color: rgba(255, 250, 242, 0.35);
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
    border-color: rgba(37, 182, 173, 0.7);

    background: rgba(255, 255, 255, 0.055);

    box-shadow:
        0 0 0 3px rgba(37, 182, 173, 0.08);
}

.booking-field select option {
    background: #0b171b;
    color: var(--randie-white);
}

.booking-submit {
    border: none;
    cursor: pointer;
}

/* ==========================================================
   FOOTER
========================================================== */

.artist-footer {
    padding: 36px 32px 24px;

    border-top: 1px solid rgba(216, 185, 141, 0.14);

    background: #061317;
}

.artist-footer-inner {
    width: min(100%, 1280px);

    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;

    gap: 28px;

    margin: 0 auto;
}

.artist-footer-monogram {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(216, 185, 141, 0.55);
    border-radius: 50%;

    color: var(--randie-champagne);
    text-decoration: none;

    font-family: "Cormorant Garamond", serif;
    font-size: 1.8rem;
    font-style: italic;
    font-weight: 700;
}

.artist-footer-monogram span {
    color: var(--randie-rose);
    font-size: 0.6rem;
}

.artist-footer-copy strong {
    display: block;

    color: var(--randie-cream);

    font-family: "Cormorant Garamond", serif;
    font-size: 1.55rem;
}

.artist-footer-copy p {
    margin: 3px 0 0;

    color: rgba(255, 250, 242, 0.5);

    font-size: 0.72rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.artist-footer-socials {
    display: flex;
    gap: 15px;
}

.artist-footer-socials a {
    color: rgba(255, 250, 242, 0.68);
    text-decoration: none;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.artist-footer-socials a:hover {
    color: var(--randie-rose-soft);
    transform: translateY(-2px);
}

.artist-footer-bottom {
    width: min(100%, 1280px);

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 24px;

    margin: 30px auto 0;

    color: rgba(255, 250, 242, 0.46);

    font-size: 0.74rem;
    letter-spacing: 1px;
}

.artist-footer-credit {
    text-align: right;
}

.artist-footer-credit a {
    color: var(--randie-champagne);

    font-weight: 700;
    text-decoration: none;

    transition:
        color 0.3s ease,
        text-shadow 0.3s ease;
}

.artist-footer-credit a:hover {
    color: var(--randie-rose-soft);

    text-shadow:
        0 0 12px rgba(212, 79, 114, 0.25);
}

/* Tablet */

@media (max-width: 950px) {

    .booking-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

/* Mobile */

@media (max-width: 700px) {

    .booking-section {
        padding: 76px 18px;
    }

    .booking-intro {
        text-align: center;
    }

    .booking-label {
        justify-content: center;
    }

    .booking-intro h2 {
        font-size: clamp(3.2rem, 14vw, 5rem);
    }

    .booking-form {
        padding: 24px 18px;
    }

    .booking-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .booking-submit {
        width: 100%;
    }

    .artist-footer-inner {
        grid-template-columns: 1fr;

        justify-items: center;

        text-align: center;
    } 

    .artist-footer-bottom {
    flex-direction: column;
    justify-content: center;

    text-align: center;
}

.artist-footer-credit {
    text-align: center;
}

}

/* ==========================================================
   RANDIE OFFICIAL LOGO + NAVIGATION SIZE
========================================================== */

.artist-logo-link,
.artist-footer-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
}

.artist-footer-logo-image {
    width: 115px;
    height: 145px;

    display: block;

    object-fit: contain;

    filter:
        drop-shadow(0 0 14px rgba(216, 185, 141, 0.16));
}

.artist-footer-logo-image {
   width: 145px;
height: 175px;

    display: block;

    object-fit: contain;

    filter:
        drop-shadow(0 0 14px rgba(216, 185, 141, 0.14));
}

/* Larger desktop navigation */

.artist-navigation a {
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 2.2px;
}

.artist-socials {
    gap: 18px;
}

.artist-socials a {
    font-size: 1.22rem;
}

/* Stronger footer lettering and icons */

.artist-footer-copy strong {
    font-size: 2rem;
}

.artist-footer-copy p {
    font-size: 0.82rem;
    letter-spacing: 1.5px;
}

.artist-footer-socials {
    gap: 18px;
}

.artist-footer-socials a {
    font-size: 1.2rem;
}

/* Mobile logo */

@media (max-width: 768px) {

    .artist-logo-image {
        width: 64px;
        height: 82px;
    }

    .artist-footer-logo-image {
        width: 95px;
        height: 120px;
    }
}

/* Keep navigation targets below the fixed header */

#music,
#videos,
#about,
#ranch,
#booking {
    scroll-margin-top: 155px;
}
