/* ==============================
   MELOPHILE RECORDS
   Main Website Styles
   ============================== */

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

body {
    background-color: #080808;
    color: white;
    font-family: Arial, sans-serif;
}

/* ==============================
   SMOOTH SCROLLING
============================== */

html {
    scroll-behavior: smooth !important;
}

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

header {
    width: 100%;
    padding: 10px 50px;
    border-bottom: 1px solid #222;
    background: #080808;
}

header nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 18px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    width: 100px;
    height: auto;
    display: block;
}

.header-brand {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    flex-shrink: 0;
}

.header-brand h1 {
    margin: 0;
    color: #fff;
    font-size: 40px;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1;
}

.header-brand p {
    margin: 0;
    color: #ff9d00;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
}

.nav-links a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 2px;
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: #ff9d00;
}


/* =========================
   HERO SECTION
========================= */

.hero {
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 150px 30px 100px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Hero Label */

.hero-label {
    font-size: 13px;
    letter-spacing: 4px;
    font-weight: 600;
    margin-bottom: 25px;
    opacity: 0;
    animation: heroFadeUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

/* Hero Heading */

.hero h2 {
    width: 100%;
    font-size: clamp(55px, 9vw, 130px);
    line-height: 0.9;
    letter-spacing: -5px;
    margin: 0;
    font-weight: 900;
    overflow: visible;
}

/* Headline Line Reveal */

.hero-line {
    display: block;
    width: 100%;
    opacity: 0;
    transform: translateY(100%);
    animation: heroTextReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    overflow: visible;
    white-space: nowrap;
}

/* First Line */

.hero-line:nth-child(1) {
    animation-delay: 0.45s;
}

/* Second Line */

.hero-line:nth-child(2) {
    animation-delay: 0.65s;
}

/* Hero Description */

.hero-description {
    max-width: 600px;
    margin: 35px auto;
    font-size: 18px;
    line-height: 1.7;
    opacity: 0;
    animation: heroFadeUp 0.8s ease forwards;
    animation-delay: 0.9s;
}

/* Hero Buttons */

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 35px;
    opacity: 0;
    animation: heroFadeUp 0.8s ease forwards;
    animation-delay: 1.2s;
}

/* =========================
   HERO BACKGROUND GLOW
========================= */

.hero::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: #ff9d00;
    opacity: 0.06;
    border-radius: 50%;
    filter: blur(120px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: heroGlow 6s ease-in-out infinite alternate;
    pointer-events: none;
}

/* =========================
   HERO ANIMATIONS
========================= */

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroTextReveal {
    from {
        opacity: 0;
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroGlow {
    from {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.04;
    }

    to {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.08;
    }
}

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

.btn {
    display: inline-block;
    padding: 16px 28px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Button Shine */

.btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.25);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
}

.btn:hover::after {
    left: 150%;
}

/* Primary Button */

.btn-primary {
    background: #ff9d00;
    color: #000;
}

.btn-primary:hover {
    background: #fff;
    transform: translateY(-3px);
}

/* Secondary Button */

.btn-secondary {
    border: 1px solid #fff;
    color: #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
}

/* ================================
   RELEASES SECTION
================================ */

.releases {
    padding: 120px 8%;
    background: #0b0b0b;
}

/* Section Heading */

.section-heading {
    max-width: 750px;
    margin-bottom: 70px;
}

.section-heading span {
    color: #ff9d00;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
}

.section-heading h2 {
    font-size: 48px;
    margin: 12px 0 20px;
    letter-spacing: 2px;
}

.section-heading p {
    color: #999;
    font-size: 16px;
    line-height: 1.8;
    max-width: 650px;
}

/* ================================
   FEATURED UPCOMING RELEASE
================================ */

.featured-release {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    background: #101010;
    border: 1px solid #2a2a2a;
    margin-bottom: 70px;
    overflow: hidden;
    position: relative;
    transition: 0.4s ease;
    opacity: 0;
    transform: translateY(40px);
    animation: featuredReleaseReveal 1s ease 0.2s forwards;
}

.featured-release:hover {
    border-color: #ff9d00;
}

/* ================================
   FEATURED ARTWORK
================================ */

.featured-art {
    aspect-ratio: 1 / 1;
    width: 100%;
    background: #171717;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Actual Artwork */

.featured-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Dark Overlay */

.featured-art::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.08);
    pointer-events: none;
}

/* Next Release Label */

.featured-number {
    position: absolute;
    top: 25px;
    left: 25px;
    color: #ff9d00;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    z-index: 2;
    text-shadow: 0 1px 5px #000;
}
/* Featured Information */

.featured-info {
    padding: 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Type */

.featured-type {
    color: #ff9d00;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

/* Title */

.featured-info h3 {
    font-size: clamp(38px, 5vw, 65px);
    line-height: 0.95;
    letter-spacing: -2px;
    margin: 0 0 22px;
}

/* Artists */

.featured-artist {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 1px;
    margin: 0 0 12px;
}

/* Genre */

.featured-genre {
    color: #777;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0 0 35px;
}

/* Release Date */

.featured-date {
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    padding: 20px 0;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.featured-date span {
    color: #666;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.featured-date strong {
    color: #fff;
    font-size: 13px;
    letter-spacing: 1px;
}

/* Pre-Save Button */

.featured-btn {
    display: inline-block;
    width: fit-content;
    padding: 16px 28px;
    background: #ff9d00;
    color: #080808;
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    transition: 0.3s ease;
}

.featured-btn:hover {
    background: #fff;
    transform: translateY(-3px);
}

/* Featured Animation */

@keyframes featuredReleaseReveal {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/* ================================
   FEATURED RELEASE - MOBILE
================================ */

@media (max-width: 800px) {

    .featured-release {
        grid-template-columns: 1fr;
        margin-bottom: 60px;
    }

    .featured-art {
        min-height: 350px;
    }

    .featured-info {
        padding: 35px 30px;
    }

    .featured-info h3 {
        font-size: 42px;
    }

    .featured-artist {
        font-size: 11px;
    }

    .featured-date {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

}

/* Releases Grid */

.releases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* =========================
   RELEASE CARD
========================= */

.release-card {
    background: #101010;
    border: 1px solid #1d1d1d;
    transition: 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
    animation: releaseCardReveal 0.8s ease forwards;
}

.release-card:nth-child(1) {
    animation-delay: 0.2s;
}

.release-card:nth-child(2) {
    animation-delay: 0.4s;
}

.release-card:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes releaseCardReveal {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.release-card:hover {
    border-color: #ff9d00;
    transform: translateY(-6px);
}

/* Artwork */

.release-art {
    aspect-ratio: 1 / 1;
    background: #171717;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.release-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.release-art img + span {
    z-index: 2;
    text-shadow: 0 1px 5px #000;
}

.release-art span {
    position: absolute;
    top: 18px;
    left: 18px;
    color: #ff9d00;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.release-art div {
    color: #333;
    font-size: 25px;
    font-weight: 800;
    letter-spacing: 5px;
}

/* Release Information */

.release-info {
    padding: 25px;
}

.release-type {
    color: #ff9d00;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
}

.release-info h3 {
    margin: 10px 0 6px;
    font-size: 20px;
    letter-spacing: 1px;
}

.release-info p {
    margin: 0;
    color: #888;
    font-size: 13px;
}

/* Bottom Row */

.release-bottom {
    margin-top: 25px;
    padding-top: 18px;
    border-top: 1px solid #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.release-bottom span {
    color: #666;
    font-size: 12px;
}

/* =========================
   LISTEN MENU
========================= */

.listen-menu {
    position: relative;
}

/* Remove default details marker */

.listen-menu summary {
    list-style: none;
}

.listen-menu summary::-webkit-details-marker {
    display: none;
}

/* Listen Button */

.listen-btn {

    color: #ff9d00;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s ease;

}

.listen-btn:hover {
    color: #fff;
}

/* Listen Options */

.listen-options {

    position: absolute;
    right: 0;
    bottom: calc(100% + 12px);

    width: 180px;

    background: #111;
    border: 1px solid #2a2a2a;

    padding: 6px;

    z-index: 20;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);

}

/* Platform Links */

.listen-options a {

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 12px 13px;

    color: #aaa;
    text-decoration: none;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;

    transition: 0.25s ease;

}

.listen-options a span {
    color: #ff9d00;
}

.listen-options a:hover {

    color: #fff;
    background: #1a1a1a;

}

.listen-options a:hover span {
    color: #fff;
}

/* =========================
   LISTEN MENU - MOBILE
========================= */

@media (max-width: 500px) {

    .listen-options {

        right: 0;
        width: 165px;

    }

}

/* View All */

.releases-footer {
    margin-top: 50px;
    text-align: center;
}

.releases-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 17px 24px 17px 26px;
    border: 1px solid #ff9d00;
    background: transparent;
    color: #ff9d00;
    font-family: inherit;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2.5px;
    cursor: pointer;
    overflow: hidden;
    transition:
        color 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.releases-link::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #ff9d00;
    transform: translateX(-101%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 0;
}

.releases-link > span {
    position: relative;
    z-index: 1;
}

.releases-link-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border: 1px solid rgba(255, 157, 0, 0.5);
    font-size: 16px;
    line-height: 1;
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
}

.releases-link:hover {
    color: #050505;
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(255, 157, 0, 0.18);
}

.releases-link:hover::before {
    transform: translateX(0);
}

.releases-link:hover .releases-link-arrow {
    transform: translateX(5px);
    border-color: #050505;
    background: rgba(0, 0, 0, 0.08);
}

.releases-link:active {
    transform: translateY(-1px);
}

/* ================================
   RELEASES - MOBILE
================================ */

@media (max-width: 800px) {

    .releases {
        padding: 80px 6%;
    }

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

/* ================================
   RELEASE PLAYLIST MODAL
================================ */

.playlist-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.35s ease,
        visibility 0.35s ease;
}

.playlist-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* ================================
   MODAL BACKGROUND
================================ */

.playlist-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(8px);
}


/* ================================
   MODAL BOX
================================ */

.playlist-modal-box {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 560px;
    padding: 55px;
    background: #0d0d0d;
    border: 1px solid #292929;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    transform: translateY(25px) scale(0.97);
    transition: transform 0.35s ease;
}

.playlist-modal.active .playlist-modal-box {
    transform: translateY(0) scale(1);
}


/* ================================
   MODAL CLOSE
================================ */

.playlist-modal-close {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 38px;
    height: 38px;
    border: 1px solid #292929;
    background: transparent;
    color: #777;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.playlist-modal-close:hover {
    color: #fff;
    border-color: #ff9d00;
    background: #171717;
}


/* ================================
   MODAL TEXT
================================ */

.playlist-modal-box .section-label {
    margin-bottom: 15px;
}

.playlist-modal-box h3 {
    margin: 0 0 15px;
    color: #fff;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1px;
}

.playlist-modal-box h3 span {
    color: #ff9d00;
}

.playlist-modal-description {
    max-width: 430px;
    margin: 0 0 35px;
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}


/* ================================
   PLAYLIST OPTIONS
================================ */

.playlist-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.playlist-option {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 22px;
    border: 1px solid #252525;
    background: #111;
    color: #fff;
    text-decoration: none;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.playlist-option:hover {
    transform: translateX(5px);
    border-color: #ff9d00;
    background: #161616;
}


/* ================================
   PLAYLIST ICON
================================ */

.playlist-option-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border: 1px solid #333;
    color: #ff9d00;
    font-size: 21px;
    font-weight: 700;
}

.playlist-option-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.playlist-option-text strong {
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
}

.playlist-option-text small {
    color: #666;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
}

.playlist-option:hover .playlist-option-text small {
    color: #ff9d00;
}


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

@media (max-width: 500px) {

    .playlist-modal {
        padding: 20px;
    }

    .playlist-modal-box {
        padding: 45px 25px 30px;
    }

    .playlist-modal-box h3 {
        font-size: 30px;
    }

    .playlist-modal-description {
        font-size: 13px;
        margin-bottom: 28px;
    }

    .playlist-option {
        padding: 17px;
    }

    .playlist-option-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

}

/* ==============================
   VIDEO SECTION
============================== */

.video-section {
    position: relative;
    padding: 120px 8%;
    background: #080808;
    border-top: 1px solid #1d1d1d;
    border-bottom: 1px solid #1d1d1d;
}

.video-heading {
    margin-bottom: 45px;
}

.video-heading .section-label {
    margin: 0 0 15px;
    color: #ff9d00;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
}

.video-heading h2 {
    margin: 0;
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1;
}

.video-heading h2 span {
    color: #ff9d00;
}

.video-feature {
    max-width: 1200px;
    margin: 0 auto;
}

.video-player {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #111;
    border: 1px solid #242424;
}

.video-player iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.video-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-top: 22px;
}

.video-info span {
    color: #ff9d00;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
}

.video-info h3 {
    margin: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
}

.video-info p {
    max-width: 300px;
    margin: 0;
    color: #666;
    font-size: 11px;
    line-height: 1.7;
}

@media (max-width: 700px) {

    .video-section {
        padding: 90px 6%;
    }

    .video-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .video-info p {
        max-width: 100%;
    }

}

/* ==============================
   VIDEO GALLERY
============================== */

.video-gallery {
    max-width: 1200px;
    margin: 70px auto 0;
}

.video-gallery-heading {
    margin-bottom: 25px;
}

.video-gallery-heading span {
    color: #ff9d00;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.video-card {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    border: 0;
    background: none;
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #111;
    border: 1px solid #242424;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    background: rgba(8, 8, 8, 0.85);
    border: 1px solid #ff9d00;
    color: #ff9d00;
    font-size: 13px;
    transition: 0.3s ease;
}

.video-card:hover .video-play {
    background: #ff9d00;
    color: #080808;
}

.video-card-info {
    padding-top: 13px;
}

.video-card-info span {
    color: #666;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
}

.video-card-info h3 {
    margin: 6px 0 0;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.video-card:hover .video-card-info h3 {
    color: #ff9d00;
}


/* ==============================
   VIDEO GALLERY RESPONSIVE
============================== */

@media (max-width: 800px) {

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

}

@media (max-width: 500px) {

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

    .video-gallery {
        margin-top: 55px;
    }

}

/* ================================
   ARTISTS SECTION
================================ */

.artists {

    padding: 120px 8%;

    background: #080808;

}

/* =========================
   SECTION HEADING
========================= */

.artists .section-heading {

    max-width: 750px;

    margin-bottom: 70px;

}

.artists .section-heading span {

    color: #ff9d00;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 4px;

}

.artists .section-heading h2 {

    font-size: 48px;

    margin: 12px 0 20px;

    letter-spacing: 2px;

}

.artists .section-heading p {

    color: #999;

    font-size: 16px;

    line-height: 1.8;

    max-width: 650px;

}

/* =========================
   ARTIST GRID
========================= */

.artists-grid {

    display: grid;

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

    gap: 20px;

}

/* =========================
   ARTIST CARD
========================= */

.artist-card {

    display: block;

    background: #101010;

    border: 1px solid #1d1d1d;

    text-decoration: none;

    overflow: hidden;

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

    opacity: 0;

    transform: translateY(50px);

    animation:
        artistCardReveal
        0.8s ease forwards;

}

/* Animation delays */

.artist-card:nth-child(1) {
    animation-delay: 0.15s;
}

.artist-card:nth-child(2) {
    animation-delay: 0.25s;
}

.artist-card:nth-child(3) {
    animation-delay: 0.35s;
}

.artist-card:nth-child(4) {
    animation-delay: 0.45s;
}

.artist-card:nth-child(5) {
    animation-delay: 0.55s;
}

.artist-card:nth-child(6) {
    animation-delay: 0.65s;
}

.artist-card:nth-child(7) {
    animation-delay: 0.75s;
}

/* =========================
   ARTIST IMAGE
========================= */

.artist-image {

    aspect-ratio: 4 / 5;

    background: #111;

    position: relative;

    overflow: hidden;

}

.artist-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    filter: grayscale(100%);

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

}

/* Artist number */

.artist-image > span {

    position: absolute;

    top: 18px;

    left: 18px;

    color: #ff9d00;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    z-index: 3;

}

/* =========================
   IMAGE OVERLAY
========================= */

.artist-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.75),
            transparent 55%
        );

    opacity: 0.6;

    transition:
        opacity 0.4s ease;

}

/* =========================
   ARTIST INFO
========================= */

.artist-info {

    padding: 22px 20px;

}

.artist-info h3 {

    margin: 0 0 8px;

    color: #fff;

    font-size: 17px;

    letter-spacing: 1px;

    transition:
        color 0.3s ease;

}

.artist-info p {

    margin: 0;

    color: #ff9d00;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.4px;

    line-height: 1.6;

}

/* =========================
   CARD HOVER
========================= */

.artist-card:hover {

    border-color: #ff9d00;

    transform: translateY(-6px);

}

.artist-card:hover .artist-image img {

    filter: grayscale(0%);

    transform: scale(1.05);

}

.artist-card:hover .artist-overlay {

    opacity: 0.25;

}

.artist-card:hover .artist-info h3 {

    color: #ff9d00;

}

/* =========================
   CARD ANIMATION
========================= */

@keyframes artistCardReveal {

    from {

        opacity: 0;

        transform:
            translateY(50px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}

/* =================================================
   ARTIST PROFILE
================================================= */

.artist-profile {

    position: fixed;

    inset: 0;

    z-index: 1000;

    background: #080808;

    padding: 50px 8%;

    overflow-y: auto;

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transform: translateY(20px);

    transition:
        opacity 0.35s ease,
        transform 0.35s ease,
        visibility 0.35s ease;

}

/* Open profile when targeted */

.artist-profile:target {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform: translateY(0);

}

/* =========================
   PROFILE CLOSE
========================= */

.profile-close {

    display: inline-block;

    color: #ff9d00;

    text-decoration: none;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 60px;

    transition:
        color 0.3s ease,
        transform 0.3s ease;

}

.profile-close:hover {

    color: #fff;

    transform:
        translateX(-4px);

}

/* =========================
   PROFILE CONTENT
========================= */

.profile-content {

    max-width: 1400px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        0.9fr 1.1fr;

    gap: 100px;

    align-items: center;

}

/* =========================
   PROFILE IMAGE
========================= */

.profile-image {

    aspect-ratio: 4 / 5;

    max-height: 70vh;

    position: relative;

    overflow: hidden;

    background: #111;

}

.profile-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    filter: grayscale(100%);

}

.profile-image > span {

    position: absolute;

    top: 25px;

    left: 25px;

    color: #ff9d00;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;

}

/* =========================
   PROFILE INFO
========================= */

.profile-info {

    max-width: 650px;
    min-width: 0;

}

.profile-label {

    display: block;

    color: #ff9d00;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 25px;

}

.profile-info h2 {

    margin: 0;

    color: #fff;

    font-size:
        clamp(50px, 7vw, 100px);

    line-height: 0.9;

    letter-spacing: -4px;

}

.profile-role {

    margin: 25px 0 0;

    color: #ff9d00;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

    line-height: 1.6;

}

.profile-line {

    width: 100%;

    height: 1px;

    background: #222;

    margin: 35px 0;

}

.profile-description {

    max-width: 550px;

    color: #888;

    font-size: 16px;

    line-height: 1.8;

}

/* =========================
   ARTISTS - TABLET
========================= */

@media (max-width: 1000px) {

    .artists-grid {

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

    }

    .profile-content {

        grid-template-columns: 1fr 1fr;

        gap: 50px;

    }

}

/* =========================
   ARTISTS - MOBILE
========================= */

@media (max-width: 600px) {

    .artists {

        padding: 80px 6%;

    }

    .artists .section-heading h2 {

        font-size: 36px;

    }

    .artists-grid {

        grid-template-columns: 1fr;

    }

    .artist-profile {

        padding: 30px 6%;

    }

    .profile-close {

        margin-bottom: 35px;

    }

    .profile-content {

        grid-template-columns: 1fr;

        gap: 35px;

    }

    .profile-image {

        max-height: none;

    }

    .profile-info h2 {

        font-size: 55px;

        letter-spacing: -3px;

    }

    .profile-description {

        font-size: 14px;

    }

}

/* =========================================================
   ARTIST PROFILE — SOCIALS & SELECTED WORK
   ========================================================= */

/* =========================
   SOCIAL LINKS
========================= */

.artist-socials {
    margin-top: 42px;
}

.artist-social-label {
    display: block;
    margin-bottom: 16px;
    color: #555;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.artist-social-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.artist-social-links a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #292929;
    background: #101010;
    color: #777;
    text-decoration: none;
    transition:
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.artist-social-links a svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.artist-social-links a:hover {
    color: #ff9d00;
    background: #171717;
    border-color: #ff9d00;
    transform: translateY(-3px);
}

/* =========================
   SELECTED WORK
========================= */

.artist-work {
    margin-top: 55px;
}

.artist-work-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid #252525;
}

.artist-work-header span {
    color: #555;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.artist-work-header span:last-child {
    color: #ff9d00;
}

/* =========================
   WORK ITEM
========================= */

.artist-work-item {
    display: grid;
    grid-template-columns: 32px 64px minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid #1d1d1d;
    transition: padding 0.3s ease;
}

.work-cover {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    overflow: hidden;
    background: #111;
    border: 1px solid #252525;
}

.work-cover img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.artist-work-item:hover .work-cover img {
    transform: scale(1.05);
}


.artist-work-item:hover {
    padding-left: 8px;
}

.work-number {
    color: #444;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.work-details {
    min-width: 0;
}

.work-details h3 {
    margin: 0 0 7px;
    color: #ddd;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    line-height: 1.4;
}

.work-details p {
    margin: 0;
    color: #555;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

/* =========================
   WORK LINKS
========================= */

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

.work-links a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #777;
    text-decoration: none;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.3px;
    transition:
        color 0.3s ease,
        gap 0.3s ease;
}

.work-links a span {
    color: #ff9d00;
    font-size: 13px;
    transition: transform 0.3s ease;
}

.work-links a:hover {
    color: #fff;
    gap: 9px;
}

.work-links a:hover span {
    transform: translate(2px, -2px);
}

/* =========================
   EMPTY WORK STATE
   FOR R CUBE / BLACKEY
========================= */

.artist-work-empty {
    padding-bottom: 10px;
}

.artist-work-empty > p {
    margin: 20px 0 0;
    color: #555;
    font-size: 11px;
    line-height: 1.7;
    letter-spacing: 0.5px;
}

/* =========================================================
   ARTIST PROFILE — RESPONSIVE
   ========================================================= */

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

@media (max-width: 900px) {

    .artist-socials {
        margin-top: 35px;
    }

    .artist-work {
        margin-top: 45px;
    }

    .artist-work-item {
        grid-template-columns: 28px 60px minmax(0, 1fr);
        gap: 15px;
    }

    .work-cover {
        width: 60px;
        height: 60px;
        flex-basis: 60px;
    }

    .work-links {
        grid-column: 3;
        padding-top: 4px;
    }

}

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

@media (max-width: 600px) {

    .artist-socials {
        margin-top: 30px;
    }

    .artist-social-links {
        gap: 8px;
    }

    .artist-social-links a {
        width: 40px;
        height: 40px;
    }

    .artist-social-links a svg {
        width: 16px;
        height: 16px;
    }

    .artist-work {
        margin-top: 40px;
    }

    .artist-work-header {
        padding-bottom: 13px;
    }

    .artist-work-header span {
        font-size: 8px;
        letter-spacing: 1.5px;
    }

    .artist-work-item {
        grid-template-columns: 26px 52px minmax(0, 1fr);
        gap: 12px;
        padding: 20px 0;
    }

    .work-cover {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
    }

    .work-number {
        font-size: 9px;
    }

    .work-details h3 {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .work-details p {
        font-size: 8px;
        letter-spacing: 1.2px;
    }

    .work-links {
        grid-column: 2 / -1;
        gap: 15px;
    }

    .work-links a {
        font-size: 8px;
        letter-spacing: 1px;
    }

    .work-links a span {
        font-size: 11px;
    }

}

/* ================================
   SERVICES SECTION
================================ */

.services {
    padding: 120px 8%;
    background: #080808;
    position: relative;
}

/* Section Heading */

.services .section-heading {
    max-width: 750px;
    margin-bottom: 70px;
}

.services .section-heading span {
    color: #ff9d00;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
}

.services .section-heading h2 {
    font-size: 48px;
    margin: 12px 0 20px;
    letter-spacing: 2px;
}

.services .section-heading p {
    color: #999;
    font-size: 16px;
    line-height: 1.8;
    max-width: 650px;
}

/* Services Grid */

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Service Card */

.service-card {
    position: relative;
    padding: 40px;
    min-height: 280px;
    background: #101010;
    border: 1px solid #1d1d1d;
    transition: 0.3s ease;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    animation: serviceCardReveal 0.8s ease forwards;
}

/* Stagger Services */

.service-card:nth-child(1) {
    animation-delay: 0.2s;
}

.service-card:nth-child(2) {
    animation-delay: 0.35s;
}

.service-card:nth-child(3) {
    animation-delay: 0.5s;
}

.service-card:nth-child(4) {
    animation-delay: 0.65s;
}

.service-card:nth-child(5) {
    animation-delay: 0.8s;
}

@keyframes serviceCardReveal {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card:hover {
    border-color: #ff9d00;
    transform: translateY(-5px);
}

/* Orange Number */

.service-number {
    color: #ff9d00;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

/* Service Title */

.service-card h3 {
    font-size: 22px;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

/* Service List */

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card li {
    color: #999;
    font-size: 14px;
    margin-bottom: 12px;
    padding-left: 18px;
    position: relative;
}

.service-card li::before {
    content: "—";
    color: #ff9d00;
    position: absolute;
    left: 0;
}

/* Subtle Orange Glow */

.service-card::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    right: -60px;
    bottom: -60px;
    border-radius: 50%;
    background: #ff9d00;
    opacity: 0;
    filter: blur(70px);
    transition: 0.4s ease;
}

.service-card:hover::after {
    opacity: 0.15;
}

/* Services Footer */

.services-footer {
    margin-top: 80px;
    padding-top: 35px;
    border-top: 1px solid #1d1d1d;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.services-footer p {
    margin: 0;
    color: #777;
    font-size: 12px;
    letter-spacing: 3px;
}

.services-footer span {
    color: #ff9d00;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

/* ================================
   SERVICES - MOBILE
================================ */

@media (max-width: 800px) {

    .services {
        padding: 80px 6%;
    }

    .services .section-heading h2 {
        font-size: 36px;
    }

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

    .service-card {
        padding: 30px;
    }

    .services-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* =========================
   ABOUT SECTION
========================= */

.about {
    padding: 140px 6%;
    max-width: 1400px;
    margin: 0 auto;
}


/* =========================
   MAIN ABOUT CONTENT
========================= */

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}


/* =========================
   LEFT SIDE
========================= */

.about-heading {
    position: relative;
}

.about-heading .section-label {
    margin: 0 0 18px;
    color: #ff9d00 !important;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
}

.about-heading h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(50px, 7vw, 100px);
    line-height: 0.95;
    letter-spacing: -5px;
}

.about-heading h2 span {
    color: #ff9d00 !important;
    opacity: 1 !important;
}


/* =========================
   RIGHT SIDE
========================= */

.about-text {
    max-width: 600px;
    padding-top: 30px;
    opacity: 1 !important;
    visibility: visible !important;
}

.about-lead {
    margin: 0 0 30px;
    color: #fff;
    font-size: 26px;
    line-height: 1.4;
}

.about-text p:not(.about-lead) {
    margin: 0 0 22px;
    color: #777;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================
   ABOUT LINK
========================= */

.about-link {
    display: inline-block;
    margin-top: 20px;
    color: #ff9d00 !important;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    opacity: 1 !important;
    visibility: visible !important;
    transition:
        color 0.3s ease,
        letter-spacing 0.3s ease;
}

.about-link:hover {
    color: #fff !important;
    letter-spacing: 3px;
}


/* =========================
   LABEL STATEMENT
========================= */

.about-statement {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 110px;
    border-top: 1px solid #1d1d1d;
    border-bottom: 1px solid #1d1d1d;
}

.about-statement-item {
    min-height: 110px;
    padding: 25px 20px;
    border-right: 1px solid #1d1d1d;
    box-sizing: border-box;
}

.about-statement-item:first-child {
    padding-left: 0;
}

.about-statement-item:last-child {
    border-right: none;
}

.about-statement-item span {
    display: block;
    margin-bottom: 28px;
    color: #ff9d00;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.about-statement-item p {
    margin: 0;
    color: #aaa;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}


/* =========================
   DIVIDER
========================= */

.about-line {
    width: 100%;
    height: 1px;
    margin-top: 0;
    background: rgba(255, 255, 255, 0.08);
}


/* =========================
   ABOUT RESPONSIVE
========================= */

@media (max-width: 900px) {

    .about {
        padding: 110px 6%;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-text {
        padding-top: 0;
    }

    .about-heading h2 {
        font-size: clamp(52px, 11vw, 80px);
    }

    .about-statement {
        grid-template-columns: 1fr 1fr;
        margin-top: 80px;
    }

    .about-statement-item {
        border-bottom: 1px solid #1d1d1d;
    }

    .about-statement-item:nth-child(2) {
        border-right: none;
    }

    .about-statement-item:nth-child(3),
    .about-statement-item:nth-child(4) {
        border-bottom: none;
    }

}


@media (max-width: 600px) {

    .about {
        padding: 90px 5%;
    }

    .about-heading h2 {
        font-size: 52px;
        letter-spacing: -3px;
    }

    .about-lead {
        font-size: 22px;
    }

    .about-text p:not(.about-lead) {
        font-size: 14px;
    }

    .about-statement {
        grid-template-columns: 1fr;
        margin-top: 60px;
    }

    .about-statement-item,
    .about-statement-item:nth-child(3),
    .about-statement-item:nth-child(4) {
        min-height: auto;
        padding: 20px 0;
        border-right: none;
        border-bottom: 1px solid #1d1d1d;
    }

    .about-statement-item:last-child {
        border-bottom: none;
    }

}

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

.contact {
    padding: 120px 8%;
    background: #0b0b0b;
}


/* ================================
   CONTACT LAYOUT
================================ */

.contact-container {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 100px;
    margin-top: 80px;
    align-items: start;
}


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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0;
}


/* Contact introduction */

.contact-info > :first-child {
    margin-bottom: 55px;
}

.contact-info > :first-child > :first-child {
    display: block;
    margin-bottom: 18px;
    color: #ff9d00;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
}

.contact-info > :first-child h3 {
    margin: 0 0 20px;
    color: #fff;
    font-size: clamp(28px, 3vw, 44px);
    line-height: 0.95;
    letter-spacing: -1.5px;
}

.contact-info > :first-child p {
    max-width: 440px;
    margin: 0;
    color: #777;
    font-size: 14px;
    line-height: 1.8;
}


/* ================================
   CONTACT ITEMS
================================ */

.contact-item {
    padding: 24px 0;
    border-top: 1px solid #222;
}

.contact-item:last-child {
    border-bottom: 1px solid #222;
}

.contact-item span {
    display: block;
    margin-bottom: 10px;
    color: #ff9d00;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.contact-item a {
    color: #ddd;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #ff9d00;
}


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

.contact-form {
    width: 100%;
    padding: 40px;
    box-sizing: border-box;
    background: #101010;
    border: 1px solid #1e1e1e;
}


/* Form heading */

.contact-form > :first-child {
    margin-bottom: 35px;
}

.contact-form > :first-child > :first-child {
    display: block;
    margin-bottom: 12px;
    color: #ff9d00;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
}

.contact-form > :first-child h3 {
    margin: 0;
    color: #fff;
    font-size: 25px;
    letter-spacing: -0.5px;
}


/* ================================
   FORM ROW
================================ */

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

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

.form-group label {
    display: block;
    margin-bottom: 9px;
    color: #666;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}


/* ================================
   FORM INPUTS
================================ */

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 15px 16px;
    background: #0b0b0b;
    border: 1px solid #252525;
    border-radius: 0;
    color: #fff;
    font-family: inherit;
    font-size: 13px;
    outline: none;
    transition:
        border-color 0.3s ease,
        background 0.3s ease;
}

.form-group input,
.form-group select {
    height: 50px;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
    line-height: 1.6;
}

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

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #101010;
    color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #ff9d00;
    background: #0e0e0e;
}


/* ================================
   SEND BUTTON
================================ */

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 25px;
    background: #ff9d00;
    border: 1px solid #ff9d00;
    border-radius: 0;
    color: #080808;
    font-family: inherit;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    cursor: pointer;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.contact-btn:hover {
    background: transparent;
    color: #ff9d00;
    transform: translateY(-2px);
}


/* ================================
   CONTACT RESPONSIVE
================================ */

@media (max-width: 900px) {

    .contact {
        padding: 110px 6%;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 70px;
        margin-top: 60px;
    }

    .contact-form {
        padding: 30px;
    }

}


@media (max-width: 600px) {

    .contact {
        padding: 90px 5%;
    }

    .contact-container {
        gap: 55px;
    }

    .contact-info > :first-child {
        margin-bottom: 40px;
    }

    .contact-info > :first-child h3 {
        font-size: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form {
        padding: 24px;
    }

}

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

.footer {
    position: relative;
    padding: 100px 8% 35px;
    background: #050505;
    border-top: 1px solid #1d1d1d;
}


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

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 70px;
    padding-bottom: 90px;
}


/* ================================
   BRAND
================================ */

.footer-brand {
    max-width: 430px;
}

.footer-brand h2 {
    margin: 0 0 20px;
    color: #fff;
    font-size: clamp(26px, 2.5vw, 36px);
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1;
}

.footer-brand p {
    max-width: 370px;
    margin: 0 0 25px;
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

.footer-brand span {
    color: #ff9d00;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
}


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

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-column h3 {
    margin: 0 0 12px;
    color: #ff9d00;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
}

.footer-column a {
    width: fit-content;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.footer-column a:hover {
    color: #fff;
    transform: translateX(4px);
}


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

.footer-bottom {
    padding-top: 25px;
    border-top: 1px solid #1d1d1d;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    color: #444;
    font-size: 11px;
    letter-spacing: 1px;
}


/* ================================
   BACK TO TOP
================================ */

.back-top {
    color: #ff9d00;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.back-top:hover {
    color: #fff;
    transform: translateY(-2px);
}


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

@media (max-width: 900px) {

    .footer {
        padding: 80px 6% 30px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 55px 35px;
        padding-bottom: 65px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-brand p {
        font-size: 14px;
    }

    .footer-column a {
        font-size: 14px;
    }

}


@media (max-width: 800px) {

    .footer {
        padding: 65px 6% 30px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 45px 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

}


@media (max-width: 500px) {

    .footer {
        padding: 60px 5% 25px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-brand h2 {
        font-size: 28px;
    }

    .footer-brand p {
        font-size: 14px;
    }

    .footer-column a {
        font-size: 14px;
    }

    .footer-column h3 {
        font-size: 11px;
    }

    .footer-bottom p {
        font-size: 10px;
    }

    .back-top {
        font-size: 11px;
    }

}

/* =========================================================
   MOBILE OPTIMIZATION LAYER
   Keeps the desktop design intact and improves phone layouts.
========================================================= */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

img,
iframe,
video {
    max-width: 100%;
}

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

.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid #292929;
    background: #0d0d0d;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    background: #fff;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.mobile-menu-toggle.active span {
    background: #ff9d00;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* =========================
   TABLET / SMALL LAPTOP
========================= */

@media (max-width: 1000px) {
    header {
        padding: 12px 30px;
    }

    header nav {
        gap: 14px;
    }

    .logo img {
        width: 82px;
    }

    .header-brand h1 {
        font-size: clamp(25px, 3.2vw, 34px);
    }

    .header-brand p {
        font-size: clamp(11px, 1.5vw, 15px);
    }

    .nav-links {
        gap: 18px;
    }

    .nav-links a {
        font-size: 11px;
        letter-spacing: 1.4px;
    }
}

/* =========================
   PHONE
========================= */

@media (max-width: 700px) {
    header {
        padding: 12px 5%;
        position: relative;
        z-index: 1000;
    }

    header nav {
        min-height: 54px;
        gap: 12px;
    }

    .logo img {
        width: 58px;
    }

    .header-brand {
        min-width: 0;
        flex: 1;
    }

    .header-brand h1 {
        font-size: clamp(17px, 5.3vw, 24px);
        letter-spacing: 1.2px;
        white-space: nowrap;
    }

    .header-brand p {
        font-size: 9px;
        letter-spacing: 1.5px;
    }

    .mobile-menu-toggle {
        display: flex;
        flex: 0 0 44px;
        margin-left: auto;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 5%;
        right: 5%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin: 0;
        padding: 8px;
        background: #0d0d0d;
        border: 1px solid #292929;
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    }

    .nav-links.mobile-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-links a {
        width: 100%;
        padding: 16px 15px;
        border-bottom: 1px solid #1d1d1d;
        font-size: 11px;
        letter-spacing: 2px;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-links a:hover {
        background: #171717;
    }

    .hero {
        min-height: 78vh;
        padding: 100px 5% 80px;
    }

    .hero-label {
        font-size: 9px;
        line-height: 1.6;
        letter-spacing: 2px;
        margin-bottom: 20px;
    }

    .hero h2 {
        font-size: clamp(42px, 13vw, 68px);
        line-height: 0.92;
        letter-spacing: -3px;
    }

    .hero-line {
        white-space: normal;
    }

    .hero-description {
        max-width: 360px;
        margin: 28px auto;
        font-size: 14px;
        line-height: 1.7;
    }

    .hero-buttons {
        width: 100%;
        flex-direction: column;
        gap: 10px;
        margin-top: 28px;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        padding: 16px 20px;
    }

    .hero::before {
        width: 360px;
        height: 360px;
        filter: blur(90px);
    }

    .section-heading {
        margin-bottom: 45px;
    }

    .section-heading span {
        font-size: 10px;
        letter-spacing: 3px;
    }

    .section-heading h2,
    .services .section-heading h2,
    .artists .section-heading h2 {
        font-size: clamp(30px, 9vw, 42px);
        line-height: 1;
        letter-spacing: 1px;
    }

    .section-heading p {
        font-size: 14px;
        line-height: 1.7;
    }

    .releases {
        padding: 75px 5%;
    }

    .featured-release {
        margin-bottom: 50px;
    }

    .featured-art {
        min-height: 0;
        aspect-ratio: 1 / 1;
    }

    .featured-number {
        top: 16px;
        left: 16px;
        font-size: 9px;
        letter-spacing: 2px;
    }

    .featured-info {
        padding: 28px 22px;
    }

    .featured-info h3 {
        font-size: clamp(32px, 10vw, 46px);
    }

    .featured-artist {
        font-size: 10px;
        line-height: 1.7;
    }

    .featured-genre {
        font-size: 9px;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .featured-date {
        padding: 16px 0;
        margin-bottom: 22px;
    }

    .featured-btn {
        width: 100%;
        text-align: center;
    }

    .release-info {
        padding: 20px;
    }

    .release-info h3 {
        font-size: 18px;
        line-height: 1.25;
        overflow-wrap: anywhere;
    }

    .release-bottom {
        align-items: flex-start;
        gap: 15px;
    }

    .release-bottom > span {
        font-size: 10px;
        line-height: 1.5;
    }

    .listen-btn {
        font-size: 10px;
        padding: 5px 0;
    }

    .listen-options {
        width: 165px;
        max-width: calc(100vw - 60px);
    }

    .releases-footer {
        margin-top: 40px;
    }

    .releases-link {
        width: 100%;
        max-width: 330px;
        justify-content: space-between;
        padding: 15px 18px;
        font-size: 10px;
        letter-spacing: 2px;
    }

    .playlist-modal {
        padding: 18px;
    }

    .playlist-modal-box {
        max-width: 100%;
        padding: 42px 22px 25px;
    }

    .playlist-modal-box h3 {
        font-size: clamp(27px, 8vw, 38px);
        line-height: 1;
    }

    .playlist-modal-description {
        font-size: 13px;
        line-height: 1.7;
    }

    .playlist-option {
        padding: 17px;
    }

    .video-section {
        padding: 75px 5%;
    }

    .video-feature {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .video-player {
        width: 100%;
        aspect-ratio: 16 / 9;
    }

    .video-info {
        padding: 0;
    }

    .video-info h3 {
        font-size: clamp(28px, 9vw, 40px);
        line-height: 1;
    }

    .video-info p {
        font-size: 13px;
        line-height: 1.7;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .video-card-info {
        padding: 16px;
    }

    .video-card-info h3 {
        font-size: 15px;
    }

    .artists {
        padding: 75px 5%;
    }

    .artist-info {
        padding: 18px 0 8px;
    }

    .artist-info h3 {
        font-size: 19px;
    }

    .artist-info p {
        font-size: 9px;
        letter-spacing: 1.2px;
    }

    .artist-profile {
        padding: 28px 5%;
    }

    .profile-close {
        display: inline-block;
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .profile-info h2 {
        font-size: clamp(42px, 13vw, 58px);
        line-height: 0.95;
        overflow-wrap: anywhere;
    }

    .profile-role {
        font-size: 9px;
        line-height: 1.6;
        letter-spacing: 1.5px;
    }

    .profile-description {
        font-size: 13px;
        line-height: 1.7;
    }

    .artist-work-item {
        grid-template-columns: 24px 50px minmax(0, 1fr);
        gap: 10px;
        padding: 18px 0;
    }

    .work-cover {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
    }

    .work-details h3 {
        font-size: 10px;
        line-height: 1.35;
        overflow-wrap: anywhere;
    }

    .work-details p {
        font-size: 7px;
        line-height: 1.4;
    }

    .work-links {
        grid-column: 2 / -1;
        gap: 12px;
        flex-wrap: wrap;
        padding-top: 2px;
    }

    .work-links a {
        min-height: 32px;
        font-size: 8px;
    }

    .services {
        padding: 75px 5%;
    }

    .services-grid {
        gap: 14px;
    }

    .service-card {
        min-height: auto;
        padding: 25px 22px;
    }

    .service-number {
        font-size: 11px;
        margin-bottom: 18px;
    }

    .service-card h3 {
        font-size: 19px;
        line-height: 1.15;
        margin-bottom: 18px;
    }

    .service-card p {
        font-size: 13px;
        line-height: 1.7;
    }

    .service-card li {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 9px;
    }

    .services-footer {
        margin-top: 55px;
        padding-top: 25px;
    }

    .services-footer p,
    .services-footer span {
        font-size: 9px;
        letter-spacing: 2px;
        line-height: 1.6;
    }

    .about {
        padding: 75px 5%;
    }

    .about-content {
        gap: 42px;
    }

    .about-heading h2 {
        font-size: clamp(43px, 13vw, 58px);
        line-height: 0.95;
    }

    .about-lead {
        font-size: 20px;
        line-height: 1.45;
    }

    .about-text p:not(.about-lead) {
        font-size: 13px;
        line-height: 1.8;
    }

    .about-link {
        display: block;
        font-size: 10px;
        line-height: 1.6;
        letter-spacing: 1.5px;
    }

    .about-statement {
        margin-top: 50px;
    }

    .contact {
        padding: 75px 5%;
    }

    .contact-container {
        margin-top: 45px;
        gap: 45px;
    }

    .contact-info > :first-child h3 {
        font-size: clamp(28px, 9vw, 38px);
        line-height: 1;
    }

    .contact-info > :first-child p {
        font-size: 13px;
        line-height: 1.7;
    }

    .contact-item a {
        display: inline-block;
        max-width: 100%;
        font-size: 12px;
        overflow-wrap: anywhere;
    }

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

    .contact-form > :first-child h3 {
        font-size: 22px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
    }

    .contact-btn {
        width: 100%;
        min-height: 50px;
    }

    .footer {
        padding: 55px 5% 25px;
    }

    .footer-main {
        gap: 35px;
        padding-bottom: 50px;
    }

    .footer-brand h2 {
        font-size: 26px;
    }

    .footer-brand p {
        font-size: 13px;
        line-height: 1.7;
    }

    .footer-brand span {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .footer-column {
        gap: 12px;
    }

    .footer-column h3 {
        margin-bottom: 8px;
    }

    .footer-column a {
        font-size: 13px;
        padding: 3px 0;
    }

    .footer-bottom {
        gap: 15px;
    }

    .footer-bottom p {
        font-size: 9px;
        line-height: 1.6;
    }

    .back-top {
        font-size: 10px;
    }
}

/* =========================
   VERY SMALL PHONES
========================= */

@media (max-width: 360px) {
    .logo img {
        width: 50px;
    }

    .header-brand h1 {
        font-size: 16px;
        letter-spacing: 0.8px;
    }

    .header-brand p {
        font-size: 8px;
    }

    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .hero {
        padding-top: 85px;
    }

    .hero h2 {
        font-size: 40px;
    }

    .featured-info {
        padding: 25px 18px;
    }

    .release-info {
        padding: 18px;
    }

    .contact-form {
        padding: 20px 15px;
    }
}

/* =========================
   TOUCH DEVICES
========================= */

@media (hover: none) and (pointer: coarse) {
    .btn:hover,
    .featured-btn:hover,
    .releases-link:hover,
    .service-card:hover,
    .release-card:hover,
    .back-top:hover,
    .footer-column a:hover {
        transform: none;
    }
}

