/* =================================
   GENERAL
================================= */

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    background: #000000;
    color: white;
}


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

.main-nav {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    z-index: 100;

    background: rgba(0, 0, 0, 0.5);

    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);

    border: none;
}


/* =================================
   NAV CONTAINER
================================= */

.nav-container {
    position: relative;

    width: min(100% - 40px, 1500px);

    min-height: 90px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}


/* =================================
   SOCIALS — LEFT
================================= */

.nav-socials {
    display: flex;

    align-items: center;

    justify-content: flex-start;

    gap: 22px;
}

.nav-socials a {
    display: flex;

    align-items: center;

    justify-content: center;

    color: white;

    font-size: 1.05rem;

    text-decoration: none;

    opacity: 0.9;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.nav-socials a:hover {
    opacity: 1;

    transform: translateY(-2px);
}


/* =================================
   SOCIAL SVG ICONS
================================= */

.nav-socials svg {
    display: block;

    width: 18px;

    height: 18px;

    color: white;

    fill: currentColor;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.nav-socials a:hover svg {
    opacity: 1;

    transform: translateY(-2px);
}


/* =================================
   CENTER LOGO
================================= */

.nav-logo {
    display: flex;

    align-items: center;

    justify-content: center;

    padding: 0 30px;

    text-decoration: none;
}

.nav-logo img {
    display: block;

    width: auto;
    height: auto;

    max-width: 320px;
    max-height: 90px;

    object-fit: contain;
}


/* =================================
   RIGHT NAVIGATION
================================= */

.nav-links {
    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: clamp(20px, 2.5vw, 42px);
}

.nav-links a {
    position: relative;

    color: white;

    font-size: 0.8rem;

    font-weight: 500;

    letter-spacing: 0.14em;

    text-transform: uppercase;

    text-decoration: none;

    white-space: nowrap;

    padding: 8px 0;

    opacity: 0.9;

    transition: opacity 0.25s ease;
}

.nav-links a:hover {
    opacity: 1;
}


/* =================================
   NAV LINK UNDERLINE
================================= */

.nav-links a::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 0;

    height: 1px;

    background: white;

    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}


/* =================================
   MOBILE MENU BUTTON
================================= */

.nav-toggle {
    display: none;

    background: transparent;

    border: none;

    padding: 8px;

    cursor: pointer;
}

.nav-toggle span {
    display: block;

    width: 25px;

    height: 2px;

    margin: 5px 0;

    background: white;
}


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

.hero {
    position: relative;

    width: 100%;

    overflow: hidden;

    color: white;

    padding-top: 90px;
}

@media (max-width: 767px) {
    .hero {
        padding-top: 128px;
    }
}

@media (max-width: 400px) {
    .hero {
        padding-top: 115px;
    }
}


/* =================================
   HERO BACKGROUND IMAGE
================================= */

.hero-bg {
    width: 100%;

    display: block;
}


/* =================================
   HERO OVERLAY
================================= */

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.2),
            rgba(0, 0, 0, 0.2)
        ),
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0) 60%,
            rgba(0, 0, 0, 0.6) 85%,
            #000000 100%
        );

    pointer-events: none;
}


/* =================================
   HERO CONTENT
================================= */

.hero-container {
    position: absolute;

    inset: 0;

    z-index: 2;

    width: 100%;

    display: flex;

    align-items: flex-end;

    padding-top: 90px;
    padding-bottom: 80px;
}

.hero-content {
    width: min(100%, 900px);
}

.hero-label {
    font-size: 2rem;

    letter-spacing: 0.2em;

    text-transform: uppercase;
}

.hero-text {
    margin-bottom: 30px;

    font-size: clamp(1.1rem, 2vw, 1.5rem);
}


/* =================================
   SECTION WRAPPERS
================================= */

.albums,
.news,
.shop {
    background: #000000;

    color: white;
}


/* =================================
   SECTION CARDS — shared styling
================================= */

.albums-card,
.news-card,
.shop-card {
    background-image:
        repeating-conic-gradient(
            rgba(0, 0, 0, 0.35) 0% 25%,
            rgba(255, 255, 255, 0.05) 25% 50%,
            rgba(0, 0, 0, 0.15) 50% 75%,
            rgba(255, 255, 255, 0.02) 75% 100%
        ),
        linear-gradient(
            180deg,
            #8b0000 0%,
            #1b0000 15%,
            #1a0000 80%,
            #000000 100%
        );

    background-size: 3px 3px, 100% 100%;

    background-blend-mode: overlay, normal;

    border-radius: 24px;

    padding: clamp(30px, 5vw, 70px);

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);

    margin-top: 10px;
    margin-bottom: 5px;
}


/* =================================
   LAST CARD — extra space at the page bottom
================================= */

.shop-card {
    margin-bottom: 0;
}


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

.section-heading {
    margin-bottom: clamp(30px, 5vw, 70px);
}

.section-heading p {
    margin: 0;

    font-size: 0.8rem;

    letter-spacing: 0.2em;

    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.7);
}

.section-heading h2 {
    margin: 10px 0 0;

    font-size: clamp(2.5rem, 6vw, 6rem);

    line-height: 0.9;

    color: white;
}

/* =================================
   SECTION HEADING - DISCOGRAPHY
================================= */


/* ----- DISCLAIMER ----- */

.disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 0;
    color: #998282 !important;
}


.section-headingD {
    margin-bottom: clamp(5px, 1vw, 10px);
}

.section-headingD p {
    margin: 0;

    font-size: 0.8rem;

    letter-spacing: 0.2em;

    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.7);
}

.section-headingD h2 {
    margin: 10px 0 0;

    font-size: clamp(2.5rem, 6vw, 6rem);

    line-height: 0.9;

    color: white;
}

.section-heading-link {
    text-decoration: none;
    color: inherit;
}

.section-heading-link:hover {
    text-decoration: none;
    color: inherit;
}

/* =================================
   AUTOMATIC ALBUM GRID
================================= */

.album-grid {
    display: grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(220px, 1fr)
        );

    gap: clamp(20px, 3vw, 40px);
}


/* =================================
   ALBUM CARD
================================= */

.album-card h3 {
    margin-top: 18px;

    margin-bottom: 5px;

    font-size: clamp(0.9rem, 1.3vw, 1.1rem);

    color: white;
}

.album-card p {
    margin: 0;

    color: rgba(255, 255, 255, 0.65);
}


/* =================================
   ALBUM IMAGE
================================= */

.album-image {
    position: relative;

    width: 100%;

    aspect-ratio: 1 / 1;

    overflow: hidden;

    background: #000000;
}

.album-image img {
    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;
}


/* =================================
   ALBUM CARD — LINK VARIANT
================================= */

.album-card--link {
    display: block;

    color: inherit;

    text-decoration: none;

    cursor: pointer;
}


/* =================================
   CTA PILL (album 7 + product CTA)
================================= */

.album-card-cta {
    position: absolute;

    right: 23px;
    bottom: 23px;

    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding: 8px 14px;

    background: rgba(0, 0, 0, 0.75);

    color: white;

    font-size: 1rem;

    letter-spacing: 0.12em;

    text-transform: uppercase;

    border-radius: 999px;

    border: 1.5px solid #c8102e;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


/* Hover: lighten the CTA pill and nudge it */

.album-card--link:hover .album-card-cta {
    background: rgba(180, 0, 0, 0.9);

    transform: translateX(2px);
}


/* Hover: dim the cover image slightly */

.album-card--link .album-image img {
    transition:
        transform 0.4s ease,
        filter 0.4s ease;
}

.album-card--link:hover .album-image img {
    transform: scale(1.04);

    filter: brightness(0.85);
}



/* =================================
   ALBUM SLIDER
================================= */

.album-slider {
    position: relative;
    width: 100%;
    padding: 0 56px;
}


/* =================================
   ALBUM GRID — horizontal track
================================= */

.album-grid {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding-bottom: 8px;
}

.album-grid::-webkit-scrollbar {
    display: none;
}

.album-grid > * {
    /* Responsive card width: shrinks with the window */
    flex: 0 0 clamp(200px, 22vw, 300px);
    scroll-snap-align: start;
}


/* =================================
   ALBUM ARROWS
================================= */

.album-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;

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

    width: 44px;
    height: 44px;
    padding: 0;

    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(62, 60, 60, 0.75);
    color: white;

    font-size: 1.2rem;
    line-height: 1;

    cursor: pointer;

    transition: background 0.25s ease, border-color 0.25s ease;
}

.album-arrow--prev { left: 0; }
.album-arrow--next { right: 0; }

.album-arrow:hover {
    background: #c8102e;
    border-color: #c8102e;
}

.album-arrow:disabled {
    opacity: 0;
    pointer-events: none;
}


/* =================================
   NEWS
================================= */

.news {
    background: #000000;
    color: white;
}

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

.news a:hover {
    color: inherit;
    text-decoration: none;
}



/* =================================
   NEWS SLIDER
================================= */

.news-slider {
    position: relative;
    width: 100%;
    padding: 0 56px;
}


/* =================================
   NEWS GRID — horizontal track
================================= */

.news-grid {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding-bottom: 8px;
}

.news-grid::-webkit-scrollbar {
    display: none;
}

.news-grid > * {
    flex: 0 0 min(400px, 60vw);
    scroll-snap-align: start;
}


/* =================================
   ARROWS
================================= */

.news-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;

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

    width: 44px;
    height: 44px;
    padding: 0;

    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(62, 60, 60, 0.75);
    color: white;

    font-size: 1.2rem;
    line-height: 1;

    cursor: pointer;

    transition: background 0.25s ease, border-color 0.25s ease;
}

.news-arrow--prev { left: 0; }
.news-arrow--next { right: 0; }

.news-arrow:hover {
    background: #c8102e;
    border-color: #c8102e;
}

.news-arrow:disabled {
    opacity: 0;
    pointer-events: none;
}


/* =================================
   NEWS ITEM — image on top, text below
================================= */

.news-item {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: white;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}


/* =================================
   NEWS THUMB — 16:9 image area
================================= */

.news-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #111;
    flex-shrink: 0;
}

.news-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #111;
    transition: transform 0.6s ease, filter 0.4s ease;
}


/* =================================
   NEWS BODY — text strip below image
================================= */

.news-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px 22px 20px;
    background: #000000;
}

.news-date {
    margin: 0;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.news-title {
    margin: 0;
    font-size: clamp(1.05rem, 1.5vw, 1.35rem);
    line-height: 1.25;
    color: white;
}


/* =================================
   FOLDED CORNER
================================= */

.news-item::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    width: 0;
    height: 0;
    background: linear-gradient(
        225deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.7) 40%,
        rgba(0, 0, 0, 0) 42%
    );
    clip-path: polygon(100% 0, 100% 0, 100% 0);
    transition:
        width 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        height 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        clip-path 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

.news-item:hover::before {
    width: 72px;
    height: 72px;
    clip-path: polygon(100% 0, 100% 100%, 0 0);
}


/* =================================
   NEWS ITEM — HOVER
================================= */

.news-item:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 16, 46, 0.5);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

.news-item:hover .news-thumb img {
    transform: scale(1.06);
    filter: brightness(0.9);
}

.news-thumb::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 20%;
    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0.6) 40%,
            rgba(0, 0, 0, 0) 100%
        );
    pointer-events: none;
}

/* =================================
   NEWS INTRO TEXT (optional)
================================= */

.news-intro {
    margin: 0 0 clamp(20px, 3vw, 40px);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.75);
}

/* =================================
   OFFICIAL VIDEOS
================================= */

.videos {
    background: #000000;
    color: white;
}


/* =================================
   VIDEOS CARD
================================= */

.videos-card {
    background-image:
        repeating-conic-gradient(
            rgba(0, 0, 0, 0.35) 0% 25%,
            rgba(255, 255, 255, 0.05) 25% 50%,
            rgba(0, 0, 0, 0.15) 50% 75%,
            rgba(255, 255, 255, 0.02) 75% 100%
        ),
        linear-gradient(
            180deg,
            #8b0000 0%,
            #1b0000 15%,
            #1a0000 80%,
            #000000 100%
        );

    background-size: 3px 3px, 100% 100%;

    background-blend-mode: overlay, normal;

    border-radius: 24px;

    padding: clamp(30px, 5vw, 70px);

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);

    margin-top: 10px;
    margin-bottom: 0;
}


/* =================================
   VIDEO GRID
================================= */

.video-grid {
    display: grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(320px, 1fr)
        );

    gap: clamp(20px, 3vw, 40px);
}


/* =================================
   VIDEO CARD
================================= */

.video-card {
    display: flex;

    flex-direction: column;

    gap: 12px;

    padding: 0;

    background: transparent;

    border: none;

    color: white;

    font: inherit;

    text-align: left;

    cursor: pointer;
}


/* =================================
   VIDEO THUMB
================================= */

.video-thumb {
    position: relative;

    width: 100%;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    border-radius: 14px;

    background: #111;

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

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.video-thumb img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.55s ease,
        filter 0.35s ease;
}


/* =================================
   PLAY BUTTON — centered overlay
================================= */

.video-play {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    display: flex;

    align-items: center;

    justify-content: center;

    width: 68px;
    height: 68px;

    border-radius: 50%;

    background: rgba(0, 0, 0, 0.65);

    color: white;

    font-size: 2rem;

    line-height: 1;

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

    pointer-events: none;
}

.video-play i {
    margin-left: 4px;
}


/* =================================
   VIDEO TITLE
================================= */

.video-title {
    margin: 0;

    font-size: clamp(1rem, 1.4vw, 1.25rem);

    line-height: 1.3;

    color: white;
}


/* =================================
   VIDEO CARD — HOVER
================================= */

.video-card:hover .video-thumb {
    transform: translateY(-4px);

    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.65);
}

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

    filter: brightness(0.85);
}

.video-card:hover .video-play {
    transform: translate(-50%, -50%) scale(1.08);

    background: #c8102e;
}


/* =================================
   VIDEO CARD — PLAYING STATE
================================= */

.video-card .video-iframe {
    position: relative;

    width: 100%;

    aspect-ratio: 16 / 9;

    border: none;

    border-radius: 14px;

    overflow: hidden;

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);

    background: #000;
}

.video-card .video-iframe iframe {
    display: block;

    width: 100%;
    height: 100%;

    border: none;
}


/* =================================
   VIDEO CARD — CTA VARIANT
   ---------------------------------------------------------
   Same grid slot as a video card,
   but shows a gradient tile with
   a title and CTA pill instead of
   a thumbnail.
================================= */

.video-card--cta {
    display: block;

    text-decoration: none;

    color: white;
}


/* The CTA tile */

.video-thumb--cta {
    position: relative;

    width: 100%;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    border-radius: 14px;

    background:
        linear-gradient(
            180deg,
            rgba(139, 0, 0, 0.35) 0%,
            rgba(0, 0, 0, 0.6) 100%
        );

    border: 1px solid rgba(255, 255, 255, 0.08);

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

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


/* Title inside the tile — small, bottom-left */

.video-cta-title {
    position: absolute;

    left: 16px;
    bottom: 14px;

    margin: 0;

    max-width: calc(100% - 32px);

    font-size: 0.8rem;

    font-weight: 400;

    line-height: 1.3;

    color: rgba(255, 255, 255, 0.75);

    pointer-events: none;
}


/* The pill — top-right corner, compact */

.video-thumb--cta .album-card-cta {
    position: absolute;
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: auto;
    height: auto;
    padding: 14px 26px;
    font-size: 1.1rem;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
    border-radius: 999px;
    border: 1.5px solid #c8102e;
    background: rgba(0, 0, 0, 0.75);
    color: white;
}


/* CTA hover — lift the tile, brighten the pill */

.video-card--cta:hover .video-thumb--cta {
    transform: translateY(-4px);

    border-color: rgba(200, 16, 46, 0.6);

    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.65);
}

.video-card--cta:hover .album-card-cta {
    background: rgba(180, 0, 0, 0.9);
    transform: translate(-50%, -50%) translateX(4px);
}

/* =================================
   SHOP INTRO TEXT
================================= */

.shop-intro {
    margin: 0;

    font-size: clamp(1rem, 1.5vw, 1.25rem);

    color: rgba(255, 255, 255, 0.75);
}


/* =================================
   PRODUCT GRID
================================= */

.product-grid {
    display: grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(180px, 1fr)
        );

    gap: clamp(20px, 3vw, 40px);
}


/* =================================
   PRODUCT CARD
================================= */

.product-card {
    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: flex-end;

    gap: 12px;

    aspect-ratio: 0.8 / 1;

    padding: 20px;

    background: rgba(98, 94, 94, 0.35);

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 18px;

    color: white;

    text-decoration: none;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


/* =================================
   PRODUCT IMAGE
================================= */

.vinyl-product-image,
.product-image {
    flex: 1;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 100%;

    overflow: hidden;

    perspective: 800px;
}

.vinyl-product-image img,
.product-image img {
    display: block;

    max-width: 100%;
    max-height: 100%;

    width: auto;
    height: auto;

    object-fit: contain;

    transition: transform 0.5s ease;

    transform-style: preserve-3d;
    backface-visibility: hidden;
}


/* =================================
   PRODUCT PRICE
================================= */

.product-price {
    margin: 0;

    font-size: 1rem;

    font-weight: 600;

    letter-spacing: 0.05em;

    color: white;
}


/* =================================
   PRODUCT CARD — HOVER
================================= */

.product-card:hover,
.vinyl-product-card:hover {
    transform: translateY(-4px);

    background: rgba(139, 0, 0, 0.35);

    border-color: rgba(200, 16, 46, 0.6);

    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.55);
}

.vinyl-product-card:hover .vinyl-product-image img,
.product-card:hover .product-image img {
    transform: rotateY(-15deg);
}


/* =================================
   PRODUCT CARD — CTA VARIANT
================================= */

.product-card--link {
    justify-content: center;

    align-items: center;

    padding: 20px;
}

.product-card--link .product-image--cta {
    flex: 0 0 auto;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 100%;
    height: 100%;
}

.product-card--link .album-card-cta {
    position: static;

    font-size: 0.9rem;

    padding: 10px 18px;
}

.product-card--link:hover {
    transform: translateY(-4px);

    background: rgba(139, 0, 0, 0.35);

    border-color: rgba(200, 16, 46, 0.6);

    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.55);
}

.product-card--link:hover .album-card-cta {
    background: rgba(180, 0, 0, 0.9);

    transform: translateX(2px);
}


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

@media (max-width: 767px) {

    .nav-container {
        width: calc(100% - 30px);

        min-height: 125px;

        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;

        padding: 15px 0 12px;
        gap: 8px;
    }

    .nav-logo {
        order: 1;
        padding: 0;
    }

    .nav-logo img {
        max-width: 200px;
        max-height: 70px;
    }

    .nav-socials {
        order: 2;

        display: flex;

        align-items: center;
        justify-content: center;

        gap: 20px;

        margin-top: 2px;
    }

    .nav-socials a {
        font-size: 0.95rem;
    }

    .nav-socials svg {
        width: 17px;
        height: 17px;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: block;

        position: absolute;

        right: 0;
        top: 22px;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(0, 0, 0, 0.75),
                rgba(0, 0, 0, 0.30)
            );
    }

    .hero-container {
        padding-top: 150px;
        padding-bottom: 70px;
    }

}


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

@media (max-width: 400px) {

    .nav-container {
        min-height: 115px;

        padding-top: 12px;
    }

    .nav-logo img {
        max-width: 170px;
        max-height: 60px;
    }

    .nav-socials {
        gap: 17px;
    }

    .nav-socials a {
        font-size: 0.9rem;
    }

    .nav-socials svg {
        width: 16px;
        height: 16px;
    }

    .nav-toggle {
        right: -2px;
        top: 18px;
    }

    .hero-container {
        padding-top: 140px;
    }

}


/* =================================
   MOBILE MENU — OPEN STATE
================================= */

@media (max-width: 767px) {

    .main-nav.is-open .nav-links {
        display: flex;

        position: absolute;

        top: 100%;
        right: 0;

        width: auto;

        flex-direction: column;

        align-items: flex-end;

        gap: 0;

        padding: 10px 20px 20px;

        background: rgba(0, 0, 0, 0.85);

        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
    }

    .main-nav.is-open .nav-links a {
        display: block;

        padding: 14px 0;

        font-size: 0.95rem;

        text-align: right;
    }

    .main-nav.is-open .nav-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .main-nav.is-open .nav-toggle span:nth-child(2) {
        opacity: 0;
    }

    .main-nav.is-open .nav-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav-toggle span {
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

}


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

.site-footer {
    background: #000000;
    padding-bottom: 10px;
    text-align: center;
    color: rgb(85, 83, 83);
}

.footer-motto {
    margin: 0;

    font-size: clamp(0.8rem, 1vw, 0.8rem);

    font-weight: 400;

    letter-spacing: 0.02em;

    color: rgba(97, 97, 97, 0.85);
}



/* =================================
   NEWS PAGE = NEWSP | NEWS CARD
================================= */

.newsp-card {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
    background: linear-gradient(
        to bottom,
        #111111 0%,
        #000000 35%,
        #000000 100%
    );

    color: #ffffff;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    border-radius: 24px;

    /* border: 1px solid rgba(255, 255, 255, 0.08); */

    box-sizing: border-box;
}

.newsp-article-image {
    width: 100%;
    margin: 24px 0;
}

.newsp-article-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 14px;
}

.newsp-article-image2 {
    width: 100%;
    margin: 24px 0;
}

.newsp-article-image2 img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0;
    /* box-shadow: 0 0 18px rgba(79, 79, 79, 0.8); */
    box-shadow: 0 0 50px rgba(255, 0, 0, 1) !important;
}

/* =================================
   NEWSP VIDEO CARD
================================= */

.newsp-video-card {
    display: flex;

    flex-direction: column;

    gap: 12px;

    padding: 0;

    background: transparent;

    border: none;

    color: white;

    font: inherit;

    text-align: left;

    cursor: pointer;
}


/* =================================
   NEWSP VIDEO THUMB
================================= */

.newsp-video-thumb {
    position: relative;

    width: 100%;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    border-radius: 14px;

    background: #111;

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

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.newsp-video-thumb img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.55s ease,
        filter 0.35s ease;
}


/* =================================
   NEWSP PLAY BUTTON — centered overlay
================================= */

.newsp-video-play {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    display: flex;

    align-items: center;

    justify-content: center;

    width: 68px;
    height: 68px;

    border-radius: 50%;

    background: rgba(0, 0, 0, 0.65);

    color: white;

    font-size: 2rem;

    line-height: 1;

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

    pointer-events: none;
}

.newsp-video-play i {
    margin-left: 4px;
}


/* =================================
   NEWSP VIDEO TITLE
================================= */

.newsp-video-title {
    margin: 0;

    font-size: 0.7rem;

    font-weight: 400;

    font-style: italic;

    line-height: 1.4;

    opacity: 0.75;
}


/* =================================
   NEWSP VIDEO CARD — HOVER
================================= */

.newsp-video-card:hover .newsp-video-thumb {
    transform: translateY(-4px);

    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.65);
}

.newsp-video-card:hover .newsp-video-thumb img {
    transform: scale(1.05);

    filter: brightness(0.85);
}

.newsp-video-card:hover .newsp-video-play {
    transform: translate(-50%, -50%) scale(1.08);

    background: #c8102e;
}


/* =================================
   NEWSP VIDEO CARD — PLAYING STATE
================================= */

.newsp-video-card {
    display: flex;
    flex-direction: column;
    gap: 12px;

    width: 100%;
    padding: 0;

    background: transparent;
    border: none;

    color: white;
    font: inherit;
    text-align: left;

    cursor: pointer;
}

.newsp-video-thumb {
    position: relative;

    width: 100%;
    aspect-ratio: 16 / 9;

    overflow: hidden;

    border-radius: 14px;

    background: #111;

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

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.newsp-video-thumb img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.55s ease,
        filter 0.35s ease;
}

.newsp-video-play {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

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

    width: 68px;
    height: 68px;

    border-radius: 50%;

    background: rgba(0, 0, 0, 0.65);

    color: white;

    font-size: 2rem;
    line-height: 1;

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

    pointer-events: none;
}

.newsp-video-play i {
    margin-left: 4px;
}

.newsp-video-card:hover .newsp-video-thumb {
    transform: translateY(-4px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.65);
}

.newsp-video-card:hover .newsp-video-thumb img {
    transform: scale(1.05);
    filter: brightness(0.85);
}

.newsp-video-card:hover .newsp-video-play {
    transform: translate(-50%, -50%) scale(1.08);
    background: #c8102e;
}

.newsp-video-title {
    margin: 0;

    font-size: 0.7rem;
    font-weight: 400;
    font-style: italic;

    line-height: 1.4;

    opacity: 0.75;
}

.newsp-video-card .newsp-video-iframe {
    position: relative;

    width: 100%;
    aspect-ratio: 16 / 9;

    border: none;
    border-radius: 14px;

    overflow: hidden;

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);

    background: #000;
}

.newsp-video-card .newsp-video-iframe iframe {
    display: block;

    width: 100%;
    height: 100%;

    border: none;
}


/* =================================
   NEWSP CAROUSEL LIVE SHOWS
================================= */

.newsp-gallery {
    position: relative;
    width: 100%;
    aspect-ratio: 1260 / 715;
    margin: 24px 0;
    overflow: hidden;
    border-radius: 14px;
    background: #000000;
}

.newsp-gallery-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.45s ease;
}

.newsp-gallery-track img {
    flex: 0 0 100%;
    display: block;
    width: 100%;
    height: auto;
    flex-shrink: 0;
    border-radius: 14px;
    cursor: zoom-in;
}

.newsp-gallery-track img:nth-child(5) {
    align-self: center;
    transform: translateY(130px);
    width: 100%;
    height: auto;
}

.newsp-gallery-track img:nth-child(4),
.newsp-gallery-track img:nth-child(6) {
    align-self: center;
    transform: translateY(80px);
    width: 100%;
    height: auto;
}

.newsp-gallery-track img:nth-child(1),
.newsp-gallery-track img:nth-child(2) {
    align-self: center;
}

.newsp-gallery-track img:nth-child(3),
.newsp-gallery-track img:nth-child(24),
.newsp-gallery-track img:nth-child(29),
.newsp-gallery-track img:nth-child(32) {
    align-self: flex-start;
}

.newsp-gallery-prev,
.newsp-gallery-next {
    position: absolute;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: rgba(77, 76, 76, 0.65);
    color: #ffffff;
    font-size: 1.4rem;
    cursor: pointer;
    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.newsp-gallery-prev {
    left: 14px;
}

.newsp-gallery-next {
    right: 14px;
}

.newsp-gallery-prev:hover,
.newsp-gallery-next:hover {
    background: #c8102e;
}

.newsp-gallery-prev:hover {
    transform: translateY(-50%) scale(1.08);
}

.newsp-gallery-next:hover {
    transform: translateY(-50%) scale(1.08);
}

.newsp-image-zoom {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: rgba(0, 0, 0, 0.92);
    cursor: zoom-out;
}

.newsp-image-zoom img {
    display: block;
    max-width: 95vw;
    max-height: 95vh;
    width: auto;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}


 /* =================================

   NEWSP CAROUSEL RB LIVE MX

================================= */

.newsp-rblive-gallery {

    position: relative;

    width: 100%;

    aspect-ratio: 1260 / 715;

    margin: 24px 0;

    overflow: hidden;

    border-radius: 14px;

    background: #000000;

}

.newsp-rblive-gallery-track {

    display: flex;

    width: 100%;

    height: 100%;

    transition: transform 0.45s ease;

}

.newsp-rblive-gallery-track img {

    flex: 0 0 100%;

    display: block;

    width: 100%;

    height: auto;

    flex-shrink: 0;

    border-radius: 14px;

    cursor: zoom-in;

}

.newsp-rblive-gallery-prev,

.newsp-rblive-gallery-next {

    position: absolute;

    top: 50%;

    z-index: 2;

    transform: translateY(-50%);

    display: flex;

    align-items: center;

    justify-content: center;

    width: 46px;

    height: 46px;

    border: none;

    border-radius: 50%;

    background: rgba(77, 76, 76, 0.65);

    color: #ffffff;

    font-size: 1.4rem;

    cursor: pointer;

    transition:

        background 0.3s ease,

        transform 0.3s ease;

}

.newsp-rblive-gallery-prev {

    left: 14px;

}

.newsp-rblive-gallery-next {

    right: 14px;

}

.newsp-rblive-gallery-prev:hover,

.newsp-rblive-gallery-next:hover {

    background: #c8102e;

}

.newsp-rblive-gallery-prev:hover {

    transform: translateY(-50%) scale(1.08);

}

.newsp-rblive-gallery-next:hover {

    transform: translateY(-50%) scale(1.08);

}

.newsp-rblive-image-zoom {

    position: fixed;

    inset: 0;

    z-index: 9999;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 30px;

    background: rgba(0, 0, 0, 0.92);

    cursor: zoom-out;

}

.newsp-rblive-image-zoom img {

    display: block;

    max-width: 95vw;

    max-height: 95vh;

    width: auto;

    height: auto;

    border-radius: 14px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);

}


/* =================================
   CARD BODY
================================= */

.newsp-body {
    display: flex;
    flex-direction: column;

    padding: 18px 22px 22px;

    background: transparent;
}


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

.newsp-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;

    overflow: hidden;
    background: #111111;
}

.newsp-thumb img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
    background: #111111;
}

/* =================================
   DATE
================================= */

.newsp-date {
    margin: 0 0 7px;

    font-size: 0.75rem;
    line-height: 1.2;

    letter-spacing: 0.14em;
    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.65);
}


/* =================================
   HEADLINE
================================= */

.newsp-title {
    margin: 0;

    font-size: clamp(1.6rem, 2vw, 1.9rem);
    line-height: 1.3;

    font-weight: 600;

    color: #ffffff;
}


/* =================================
   READ MORE BUTTON
================================= */

.newsp-read-more {
    display: block;
    width: 100%;
    margin-top: 18px;
    padding: 12px 18px;

    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;

    background: #111111;
    color: #ffffff;

    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;

    text-align: center;
    cursor: pointer;
    box-sizing: border-box;
}


/* =================================
   BUTTON — HOVER
================================= */

.newsp-read-more:hover {
    background: #c8102e;
    border-color: #c8102e;
}

.newsp-thumb::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 20%;
    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0.6) 40%,
            rgba(0, 0, 0, 0) 100%
        );
    pointer-events: none;
}

/* =================================
   ARTICLE
   Hidden until "Read more..." is clicked
================================= */

.newsp-article {
    display: none;

    margin-top: 0;

    padding-top: 20px;

    /* border-top: 1px solid rgba(255, 255, 255, 0.1); */

    color: rgba(255, 255, 255, 0.88);

    font-size: 1rem;
    line-height: 1.7;
}

.newsp-article p {
    margin: 0 0 1.2em;
    text-indent: 30px;
}

.newsp-article p:last-child {
    margin-bottom: 0;
}


/* =================================
   EXPANDED STATE
   JavaScript will add .newsp-expanded
================================= */

.newsp-card.newsp-expanded .newsp-article {
    display: block;
}


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

@media (max-width: 600px) {

    .newsp-body {
        padding: 16px 17px 18px;
    }

    .newsp-title {
        font-size: 1.8rem;
        line-height: 1.35;
    }

    .newsp-article {
        font-size: 0.95rem;
        line-height: 1.65;
    }

}


/* =================================
   NEWS PAGE MUSIC LINKS (LOGOS)
================================= */

.newsp-music-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 18px;
}

.newsp-music-links img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    display: block;
}

/* =================================
   NEWS PAGE VIDEO CAPS
================================= */

.video-title {
    font-size: 0.7rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.4;
    opacity: 0.75;
}

/* =================================
   BIO CONTENT
================================= */

.bio-article {
    margin-top: 0;
    padding-top: 10px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    line-height: 1.7;
}

.bio-article p {
    margin: 0 0 1.2em;
    text-indent: 30px;
}

.bio-article p:last-child {
    margin-bottom: 0;
}

/* =================================
   BIO IMAGE
================================= */

.bio-thumb img {
    display: block;
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center top;

    background: transparent;

    -webkit-mask-image: linear-gradient(
        to bottom,
        #000 70%,
        transparent 100%
    );

    mask-image: linear-gradient(
        to bottom,
        #000 95%,
        transparent 100%
    );
}

/* =================================
   BIO — MOBILE
================================= */

@media (max-width: 600px) {

    .bio-thumb {
        aspect-ratio: 1 / 1;
    }

    .bio-article {
        font-size: 0.95rem;
        line-height: 1.65;
        padding-top: 8px;
    }

    .bio-article p {
        text-indent: 20px;
        margin-bottom: 1.1em;
    }

}


 /* =========================
   DISCOGRAPHY
========================== */

.disc-card {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
    background: linear-gradient(
        to bottom,
        #202020 0%,
        #000000 80%,
        #000000 100%
    );

    color: #ffffff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    border-radius: 24px;
    box-sizing: border-box;
}


/* Album top section */

.disc-top {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 22px;
}


/* Album cover area */

.disc-cover-area {
    flex: 0 0 42%;
}


/* Album cover */

.disc-cover {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    perspective: 1000px;
    cursor: pointer;
}

.disc-cover-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s ease;
}

.disc-cover.flipped .disc-cover-inner {
    transform: rotateY(180deg);
}


.disc-cover-front,
.disc-cover-back {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.disc-cover-front img,
.disc-cover-back img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.disc-cover-back {
    transform: rotateY(180deg);
}


/* Album information */

.disc-info {
    flex: 1;
    min-width: 0;
}

.disc-title {
    margin: 0 0 18px;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    line-height: 1.2;
    font-weight: 600;
    color: #ffffff; 
}

.disc-type {
    margin: 0 0 18px;
    font-size: clamp(1.3rem, 2.3vw, 2rem);
    font-weight: 300;
    color: #4f4f4f;
    display: inline-block;
    vertical-align: 4px !important;
}

.disc-tracks {
    margin: 0;
}

.disc-tracks p {
    margin: 0 0 8px;
    font-size: 0.95rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.88);
}

.disc-listen {
    margin: 0 0 12px !important;
    text-indent: 0 !important;
    text-align: center;
    font-size: 0.7rem !important;
}

.disc-copyright {
    margin-top: 20px !important;
    font-size: 0.7rem !important;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.45) !important;
}


/* Flip instruction */

.disc-flip-hint {
    margin: 8px 0 0;
    font-size: 0.7rem;
    line-height: 1.3;
    font-style: italic;
    text-align: center;
    color: rgba(255, 255, 255, 0.55);
}


/* Album description */

.disc-description {
    padding: 0 22px 22px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    line-height: 1.7;
}

.disc-description p {
    margin: 0;
    text-indent: 30px;
}


/* Mobile */

@media (max-width: 600px) {

    .disc-top {
        flex-direction: column;
        gap: 22px;
        padding: 17px;
    }

    .disc-cover-area {
        width: 100%;
        flex-basis: auto;
    }

    .disc-info {
        width: 100%;
    }

    .disc-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .disc-description {
        padding: 0 17px 18px;
        font-size: 0.95rem;
        line-height: 1.65;
    }

    .disc-description p {
        text-indent: 20px;
    }

}


/* =================================
   Vinyl Link Button Card - NEWS
================================= */

.vinyl-news {
    display: grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(180px, 1fr)
        );

    gap: clamp(20px, 2vw, 40px);
}


/* =================================
   VINYL CARD Link - NEWS
================================= */

.vinyl-product-card {
    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: flex-end;

    gap: 12px;

    padding: 20px;

    background: rgba(98, 94, 94, 0.35);

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 18px;

    color: white;

    text-decoration: none;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


/* =================================
   QUANTUM POP MANIFESTO IMAGE
================================= */

.quantum-manifesto {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    cursor: pointer;
}

.quantum-manifesto img {
    display: block;
    width: 100%;
    max-width: 700px;
    height: auto;

    border-radius: 8px;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quantum-manifesto img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
}


/* =================================
   QUANTUM POP MANIFESTO — LIGHTBOX
================================= */

.quantum-manifesto-zoom {
    display: block;
    width: 100%;
    max-width: 700px;

    padding: 0;
    margin: 0;

    border: 0;
    background: transparent;

    cursor: zoom-in;
}

.quantum-manifesto-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;

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

    padding: 30px;

    background: rgba(0, 0, 0, 0.92);

    cursor: zoom-out;
}

.quantum-manifesto-overlay img {
    display: block;

    max-width: 95vw;
    max-height: 95vh;

    width: auto;
    height: auto;

    object-fit: contain;
}