:root {
    --b: #060606;
    --w: #fff;
    --g: #d9d9d9;
    --line: #ffffff28;
    --r: 18px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--b);
    color: var(--w);
    font: 500 14px/1.65 Montserrat,Arial,sans-serif
}

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

.shell {
    width: min(calc(100% - 48px),1240px);
    margin: auto
}

.head {
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line)
}

.logo {
    width: 90px;
    height: 58px;
    object-fit: contain;
    object-position: left
}

.links {
    display: flex;
    gap: 22px;
    align-items: center
}

    .links a, .menu {
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: .1em
    }

        .links a:hover {
            color: #aaa
        }

.menu {
    display: none;
    background: none;
    color: #fff;
    border: 0
}

.mobile {
    display: none
}

.btn {
    border: 0;
    background: #fff;
    color: #000;
    border-radius: 999px;
    display: inline-flex;
    padding: 13px 20px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    gap: 9px;
    transition: .2s
}

    .btn:hover {
        transform: scale(1.04)
    }

    .btn.line {
        color: #fff;
        background: transparent;
        border: 1px solid var(--line)
    }

.eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #ddd
}

    .eyebrow:before {
        content: "";
        width: 24px;
        height: 1px;
        background: currentColor
    }

.hero {
    padding: 92px 0 105px;
    min-height: 550px;
    background: radial-gradient(circle at 75% 35%,#3d3d3d 0,#111 26%,#060606 55%)
}

    .hero h1, .title {
        font: 600 clamp(58px,10vw,142px)/.88 Oswald,sans-serif;
        letter-spacing: -.045em;
        text-transform: uppercase;
        margin: 18px 0 25px;
        max-width: 920px
    }

        .hero h1 span, .title span {
            color: transparent;
            -webkit-text-stroke: 1px #fff
        }

    .hero p {
        max-width: 520px;
        color: var(--g);
        font-size: 15px
    }

.section {
    padding: 100px 0
}

.intro {
    max-width: 720px
}

    .intro h2 {
        font: 600 clamp(41px,6vw,78px)/.94 Oswald,sans-serif;
        letter-spacing: -.035em;
        text-transform: uppercase;
        margin: 14px 0 18px
    }

        .intro h2 span {
            color: transparent;
            -webkit-text-stroke: 1px #fff
        }

    .intro p {
        color: #c5c5c5
    }

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 35px 0 25px
}

.filter {
    background: transparent;
    color: #ddd;
    border: 1px solid var(--line);
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase
}

    .filter.active, .filter:hover {
        background: #fff;
        color: #000
    }

.artist-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 12px
}

.artist {
    min-height: 385px;
    border: 1px solid var(--line);
    border-radius: var(--r);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: .25s
}

    .artist:hover {
        transform: translateY(-7px);
        border-color: #fff
    }

.artist-pic {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(transparent 35%,#000e),var(--pic);
    background-size: cover;
    background-position: center;
    transition: .45s
}

.artist:hover .artist-pic {
    transform: scale(1.05)
}

.artist-info {
    position: absolute;
    inset: auto 17px 15px
}

    .artist-info small {
        font-size: 9px;
        letter-spacing: .1em;
        text-transform: uppercase;
        color: #ccc
    }

    .artist-info h3 {
        font: 500 25px/1 Oswald,sans-serif;
        margin: 5px 0;
        text-transform: uppercase
    }

    .artist-info p {
        font-size: 10px;
        line-height: 1.5;
        color: #ddd;
        margin: 0;
        max-width: 230px
    }

.work-grid {
    margin-top: 45px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 12px
}

.work {
    min-height: 315px;
    border-radius: var(--r);
    overflow: hidden;
    position: relative;
    background: var(--img);
    isolation: isolate
}

    .work:after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(transparent 35%,#000d);
        z-index: -1
    }

.work-info {
    position: absolute;
    inset: auto 18px 16px
}

    .work-info small {
        font-size: 9px;
        letter-spacing: .12em;
        text-transform: uppercase
    }

.work h3 {
    font: 500 27px/1 Oswald;
    text-transform: uppercase;
    margin: 4px 0
}

.work p {
    font-size: 11px;
    color: #ddd;
    margin: 0
}

.feature {
    grid-column: span 2
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10vw
}

    .split p {
        color: #c8c8c8;
        font-size: 15px
    }

.list {
    border-top: 1px solid var(--line)
}

    .list a, .list div {
        display: flex;
        justify-content: space-between;
        align-items: start;
        padding: 17px 0;
        border-bottom: 1px solid var(--line);
        font: 500 20px/1 Oswald;
        text-transform: uppercase
    }

    .list span {
        font: 500 10px Montserrat;
        color: #aaa;
        letter-spacing: .08em
    }

.contact-box {
    background: #efefef;
    color: #080808;
    border-radius: var(--r);
    padding: clamp(26px,5vw,65px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px
}

    .contact-box p {
        color: #333
    }

.form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-content: start
}

    .form input, .form textarea, .form select {
        width: 100%;
        padding: 13px;
        border: 1px solid #aaa;
        border-radius: 8px;
        background: transparent
    }

    .form textarea, .wide {
        grid-column: span 2
    }

    .form .btn {
        justify-self: start;
        background: #080808;
        color: #fff
    }

.footer {
    border-top: 1px solid var(--line);
    padding: 23px 0;
    color: #aaa;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .09em
}

.modal {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    inset: 0;
    z-index: 10;
    padding: 20px;
    display: grid;
    place-items: center;
    background: #000c;
    backdrop-filter: blur(7px);
    transition: .2s
}

    .modal.open {
        visibility: visible;
        opacity: 1
    }

.modal-main {
    position: relative;
    max-width: 650px;
    max-height: 90svh;
    overflow: auto;
    background: #eee;
    color: #090909;
    padding: 45px;
    border-radius: var(--r)
}

    .modal-main p {
        color: #333
    }

.close {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #777;
    font-size: 18px
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 18px 0
}

.tag {
    border: 1px solid #999;
    border-radius: 999px;
    padding: 6px 9px;
    font-size: 10px
}

.note {
    font-size: 11px;
    color: #16803f;
    display: none
}

    .note.show {
        display: block
    }

@media(max-width:850px) {
    .artist-grid {
        grid-template-columns: repeat(3,1fr)
    }

    .work-grid {
        grid-template-columns: 1fr 1fr
    }

    .contact-box {
        gap: 35px
    }
}

@media(max-width:640px) {
    .shell {
        width: calc(100% - 32px)
    }

    .head {
        height: 70px
    }

    .links {
        display: none
    }

    .menu {
        display: block
    }

    .mobile.open {
        display: flex;
        position: absolute;
        top: 70px;
        inset-inline: 0;
        z-index: 8;
        padding: 22px 16px;
        background: #0b0b0b;
        flex-direction: column;
        gap: 18px;
        border-bottom: 1px solid var(--line)
    }

    .mobile a {
        font: 500 24px/1 Oswald;
        text-transform: uppercase
    }

    .hero {
        padding: 75px 0;
        min-height: 470px
    }

    .section {
        padding: 70px 0
    }

    .artist-grid, .work-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 9px
    }

    .artist {
        min-height: 275px
    }

    .artist-info {
        inset: auto 12px 12px
    }

        .artist-info h3 {
            font-size: 21px
        }

        .artist-info p {
            display: none
        }

    .feature {
        grid-column: span 2
    }

    .work {
        min-height: 230px
    }

        .work h3 {
            font-size: 23px
        }

    .split, .contact-box {
        grid-template-columns: 1fr;
        gap: 35px
    }

    .form {
        grid-template-columns: 1fr
    }

        .form textarea, .wide {
            grid-column: auto
        }

    .modal-main {
        padding: 42px 24px 25px
    }

    .hero h1 {
        font-size: 58px
    }
}

/* ==========================================================================
   VINYL DISC HOVER — Artist Directory
   Added rules only; nothing above this line was changed.
   On hover, a spinning vinyl disc rises out of the artist photo, with the
   artist's own photo as the center label. Grooves are pure CSS (no extra
   image requests, so this stays fast).
   ========================================================================== */
.artist {
    perspective: 900px;
}

.artist-pic {
    will-change: transform,filter;
}

.artist:hover .artist-pic {
    filter: brightness(.42) blur(1px);
    transform: scale(1.08);
}

.disc {
    position: absolute;
    left: 50%;
    top: 42%;
    width: min(60%,210px);
    aspect-ratio: 1/1;
    transform: translate(-50%,-50%) scale(.7);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    z-index: 2;
    box-shadow: 0 22px 44px #000000a0;
    transition: opacity .4s ease, transform .5s cubic-bezier(.2,.8,.2,1);
}

.artist:hover .disc {
    opacity: 1;
    transform: translate(-50%,-50%) scale(1);
}

.disc-spin {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    background: repeating-radial-gradient(circle at 50% 50%, #0e0e0e 0 3px, #060606 3px 6px);
    box-shadow: inset 0 0 0 2px #000, inset 0 0 22px #000000cc;
    animation: vibeDiscSpin 2.6s linear infinite;
    animation-play-state: paused;
}

.artist:hover .disc-spin {
    animation-play-state: running;
}

@keyframes vibeDiscSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.disc-label {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 36%;
    height: 36%;
    border-radius: 50%;
    transform: translate(-50%,-50%);
    background-image: var(--pic);
    background-size: cover;
    background-position: center;
    box-shadow: 0 0 0 2px #111, 0 0 0 3px #ffffff26;
}

    .disc-label:after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #000;
        box-shadow: 0 0 0 1px #555;
        transform: translate(-50%,-50%);
    }

.disc-audio-dot {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 8px #4ade80;
    opacity: 0;
}

.disc.has-audio .disc-audio-dot {
    opacity: 1;
}

@media(max-width:640px) {
    .disc {
        width: min(58%,150px);
        top: 40%;
    }

    .disc-label {
        width: 38%;
        height: 38%;
    }
}

/* ==========================================================================
   SITEWIDE FLOATING WHATSAPP BUTTON
   Injected by vibe.js on every page that loads vibe.js (index.html has its
   own already, built into its self-contained markup/CSS, so this is skipped
   there automatically).
   ========================================================================== */
.wa-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 30;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 30px #0008;
    font-size: 26px;
    transition: transform .2s;
}

.wa-float:hover {
    transform: scale(1.08);
}

@media(max-width:640px) {
    .wa-float {
        right: 14px;
        bottom: 14px;
        width: 46px;
        height: 46px;
        font-size: 22px;
    }
}
