/* =========================================================
   CINDER PINE
   Progressive Rock
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap');


/* =========================================================
   VARIABLES
   ========================================================= */

:root {
    --background: #171717;
    --background-dark: #141414;
    --background-green: #1a211c;

    --text: #eeeeee;
    --text-light: #cccccc;
    --grey: #888888;
    --grey-dark: #555555;

    --orange: #d97824;
    --green: #45694a;
}


/* =========================================================
   RESET
   ========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--background);
    color: var(--text);

    font-family: "Montserrat", sans-serif;
    font-weight: 300;

    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

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


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

header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 100;

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

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

nav {
    max-width: 1400px;

    margin: auto;

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

    padding: 25px;
}


/* Logo */

.logo {
    display: block;

    width: 92px;
}

.logo img {
    width: 92px;
    height: auto;
}


/* Navigation links */

nav ul {
    list-style: none;

    display: flex;
    gap: 40px;
}

nav ul a {
    position: relative;

    color: #dddddd;

    font-size: 12px;
    letter-spacing: 2px;

    transition: color 0.3s ease;
}

nav ul a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 1px;

    background: var(--orange);

    transition: width 0.3s ease;
}

nav ul a:hover {
    color: var(--orange);
}

nav ul a:hover::after {
    width: 100%;
}


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

.hero {
    position: relative;

    height: 100vh;
    min-height: 650px;

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

    text-align: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(69, 105, 74, 0.10),
            transparent 38%
        ),
        radial-gradient(
            circle at 50% 55%,
            rgba(217, 120, 36, 0.045),
            transparent 48%
        ),
        #171717;
}


/* ---------------------------------------------------------
   HERO CONTENT
   --------------------------------------------------------- */

.hero-content {
    position: relative;

    z-index: 10;

    width: 100%;

    padding: 0 30px;
}


/* ---------------------------------------------------------
   SUBTLE ATMOSPHERIC GLOW
   --------------------------------------------------------- */

.hero-content::before {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    width: 520px;
    height: 260px;

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

    background:
        radial-gradient(
            ellipse,
            rgba(69, 105, 74, 0.12) 0%,
            rgba(69, 105, 74, 0.045) 38%,
            transparent 72%
        );

    filter: blur(30px);

    z-index: -1;

    pointer-events: none;
}


/* ---------------------------------------------------------
   MAIN TITLE
   --------------------------------------------------------- */

.hero h1 {
    position: relative;

    margin: 0;

    color: #eeeeee;

    font-size: clamp(3rem, 7vw, 5.5rem);

    line-height: 1;

    letter-spacing: 14px;

    font-weight: 400;

    text-indent: 14px;

    text-shadow:
        0 0 35px rgba(69, 105, 74, 0.08),
        0 0 60px rgba(217, 120, 36, 0.025);
}


/* ---------------------------------------------------------
   PROGRESSIVE ROCK
   --------------------------------------------------------- */

.hero h2 {
    margin-top: 24px;
    margin-bottom: 42px;

    color: var(--green);

    font-size: 1.2rem;

    font-weight: 300;

    letter-spacing: 9px;

    text-transform: uppercase;

    opacity: 0.9;
}


/* ---------------------------------------------------------
   DESCRIPTION
   --------------------------------------------------------- */

.hero p {
    margin-bottom: 0;

    color: #999999;

    font-size: 13px;

    font-weight: 300;

    letter-spacing: 3px;

    opacity: 0.85;
}


/* ---------------------------------------------------------
   SCROLL INDICATOR
   --------------------------------------------------------- */

.scroll-indicator {
    margin-top: 85px;

    color: #666666;

    font-size: 9px;

    font-weight: 400;

    letter-spacing: 5px;

    animation: pulse 3s infinite;
}

.scroll-indicator span {
    display: block;

    margin-top: 12px;

    color: var(--orange);

    font-size: 17px;

    line-height: 1;
}


/* ---------------------------------------------------------
   HERO CANVAS
   --------------------------------------------------------- */

#waveCanvas {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    z-index: 1;

    opacity: 0.45;

    pointer-events: none;
}


/* ---------------------------------------------------------
   HERO PULSE
   --------------------------------------------------------- */

@keyframes pulse {

    0%,
    100% {
        opacity: 0.35;
    }

    50% {
        opacity: 0.8;
    }
}


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

@media (max-width: 650px) {

    .hero {
        min-height: 600px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-content::before {
        width: 340px;
        height: 220px;
    }

    .hero h1 {
        font-size: clamp(2.4rem, 11vw, 3.5rem);

        letter-spacing: 7px;

        text-indent: 7px;
    }

    .hero h2 {
        margin-top: 20px;
        margin-bottom: 35px;

        font-size: 0.85rem;

        letter-spacing: 5px;
    }

    .hero p {
        font-size: 10px;

        letter-spacing: 2px;
    }

    .scroll-indicator {
        margin-top: 65px;

        font-size: 8px;

        letter-spacing: 4px;
    }

    .scroll-indicator span {
        margin-top: 10px;

        font-size: 16px;
    }
}


/* =========================================================
   HERO VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .hero h1 {
        font-size: 2.25rem;

        letter-spacing: 5px;

        text-indent: 5px;
    }

    .hero h2 {
        font-size: 0.75rem;

        letter-spacing: 4px;
    }

    .hero p {
        font-size: 9px;

        letter-spacing: 1.5px;
    }
}



/* =========================================================
   THE BAND
   ========================================================= */

.band-section {
    position: relative;

    min-height: 100vh;

    padding: 160px 40px 140px;

    background:
        linear-gradient(
            180deg,
            #171717 0%,
            #1a211c 100%
        );

    overflow: hidden;
}


/* Subtle atmospheric light */

.band-section::before {
    content: "";

    position: absolute;

    top: 20%;
    left: -15%;

    width: 600px;
    height: 600px;

    background:
        radial-gradient(
            circle,
            rgba(69, 105, 74, 0.055),
            transparent 68%
        );

    pointer-events: none;
}


/* ---------------------------------------------------------
   BAND CONTAINER
   --------------------------------------------------------- */

.band-container {
    position: relative;

    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1.15fr;

    gap: 90px;

    align-items: center;
}


/* ---------------------------------------------------------
   BAND INTRO
   --------------------------------------------------------- */

.band-intro {
    max-width: 500px;
}

.section-label {
    display: block;

    margin-bottom: 25px;

    color: var(--orange);

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 5px;
}


/* Heading */

.band-intro h2 {
    margin-bottom: 32px;

    color: #eeeeee;

    font-size: 3.2rem;

    line-height: 1.12;

    font-weight: 300;

    letter-spacing: 2px;
}

.band-intro h2 span {
    display: inline-block;

    color: var(--green);
}


/* Text */

.band-intro p {
    max-width: 470px;

    margin-bottom: 22px;

    color: #aaaaaa;

    font-size: 14px;

    line-height: 1.95;

    letter-spacing: 0.15px;
}


/* ---------------------------------------------------------
   BAND IMAGE
   --------------------------------------------------------- */

.band-visual {
    width: 100%;
}


/* Outer frame */

.photo-placeholder {
    position: relative;

    width: 100%;

    padding: 14px;

    border: 1px solid rgba(217, 120, 36, 0.22);

    background:
        radial-gradient(
            circle at 70% 30%,
            rgba(69, 105, 74, 0.30),
            transparent 45%
        ),
        radial-gradient(
            circle at 25% 75%,
            rgba(217, 120, 36, 0.12),
            transparent 45%
        ),
        #111111;

    overflow: hidden;

    transition:
        border-color 0.5s ease,
        transform 0.5s ease;
}


/* Thin inner frame */

.photo-frame {
    position: relative;

    width: 100%;

    aspect-ratio: 4 / 3;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.07);
}


/* Image */

.photo-frame img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    filter:
        saturate(0.85)
        contrast(1.05);

    transform: scale(1.01);

    transition:
        transform 1.2s cubic-bezier(0.2, 0.65, 0.3, 1),
        filter 0.8s ease;
}


/* Subtle image overlay */

.photo-frame::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(69, 105, 74, 0.08),
            transparent 45%,
            rgba(217, 120, 36, 0.06)
        );

    pointer-events: none;
}


/* Hover */

.photo-placeholder:hover {
    border-color: rgba(217, 120, 36, 0.38);

    transform: translateY(-3px);
}

.photo-placeholder:hover .photo-frame img {
    transform: scale(1.035);

    filter:
        saturate(0.95)
        contrast(1.06);
}


/* Caption */

.photo-placeholder p {
    margin-top: 14px;

    color: #555555;

    font-size: 8px;

    font-weight: 400;

    letter-spacing: 5px;

    text-align: center;
}


/* Small orange detail */

.photo-placeholder::after {
    content: "";

    position: absolute;

    left: 50%;

    bottom: 8px;

    width: 28px;
    height: 1px;

    transform: translateX(-50%);

    background: rgba(217, 120, 36, 0.45);
}


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

@media (max-width: 900px) {

    .band-section {
        padding: 120px 25px 100px;
    }

    .band-container {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .band-intro {
        max-width: 600px;
    }

    .band-intro h2 {
        font-size: 2.5rem;
    }

    .band-intro p {
        max-width: 600px;
    }
}


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

@media (max-width: 650px) {

    .band-section {
        padding: 120px 25px 100px;
    }

    .band-intro h2 {
        font-size: 2.1rem;

        line-height: 1.18;
    }

    .band-intro p {
        font-size: 13px;

        line-height: 1.85;
    }

    .photo-placeholder {
        padding: 10px;
    }

    .photo-frame {
        aspect-ratio: 4 / 3;
    }

    /* Disable movement on touch devices */

    .photo-placeholder:hover {
        transform: none;
    }

    .photo-placeholder:hover .photo-frame img {
        transform: scale(1.01);
    }
}



/* =========================================================
   MUSIC
   ========================================================= */

.music-section {
    position: relative;

    min-height: 100vh;

    padding: 160px 40px 140px;

    background:
        linear-gradient(
            180deg,
            #1a211c 0%,
            #171717 35%,
            #141414 100%
        );

    overflow: hidden;
}

.music-container {
    max-width: 1200px;

    margin: auto;
}


/* Music heading */

.music-header {
    max-width: 800px;

    margin-bottom: 90px;
}

.music-header h2 {
    margin-bottom: 30px;

    font-size: 3.2rem;
    line-height: 1.15;

    font-weight: 300;

    letter-spacing: 2px;
}

.music-header h2 span {
    color: var(--green);
}

.album-meta {
    color: var(--grey);

    font-size: 11px;

    letter-spacing: 5px;
}


/* =========================================================
   ALBUM + TRACKLIST
   ========================================================= */

.album-content {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: start;

    width: 100%;
}


/* =========================================================
   ALBUM COVER
   ========================================================= */

.album-cover {
    position: relative;

    width: 100%;

    padding: 14px;

    border: 1px solid rgba(217, 120, 36, 0.25);

    background:
        radial-gradient(
            circle at 70% 30%,
            rgba(69, 105, 74, 0.25),
            transparent 45%
        ),
        radial-gradient(
            circle at 25% 75%,
            rgba(217, 120, 36, 0.12),
            transparent 45%
        ),
        #111111;

    overflow: hidden;
}

.album-cover-inner {
    position: relative;

    width: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;

    color: #555555;
}

.album-cover-inner > span {
    display: block;

    width: 100%;
}

.album-cover-inner > span img {
    display: block;

    width: 100%;
    height: auto;

    aspect-ratio: 1 / 1;

    object-fit: cover;
}


/* OUT NOW */

.album-cover-inner small {
    display: block;

    margin-top: 13px;

    color: #555555;

    font-size: 8px;

    letter-spacing: 4px;

    text-align: center;
}


/* =========================================================
   STREAMING LINKS
   ========================================================= */

.streaming-links {
    display: flex;

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

    gap: 18px;

    margin-top: 16px;
}

.streaming-links a {
    display: flex;

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

    width: 24px;
    height: 24px;

    color: #777777;

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

.streaming-links svg {
    width: 20px;
    height: 20px;

    fill: currentColor;
}

.streaming-links a:hover {
    color: var(--orange);

    transform: translateY(-2px);
}


/* =========================================================
   TRACKLIST
   ========================================================= */

.tracklist {
    width: 100%;

    min-width: 0;
}

.track {
    position: relative;

    display: grid;

    grid-template-columns: 55px minmax(0, 1fr) 35px;

    align-items: center;

    min-height: 65px;

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

    transition:
        padding-left 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
}

.track:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.track > span {
    color: var(--orange);

    font-size: 11px;

    letter-spacing: 2px;
}

.track p {
    color: #cccccc;

    font-size: 14px;

    letter-spacing: 2px;

    transition: color 0.35s ease;
}

.track:hover {
    padding-left: 12px;

    border-bottom-color: rgba(217, 120, 36, 0.4);

    background: rgba(255, 255, 255, 0.015);
}

.track:hover p {
    color: white;
}

.track:hover > span {
    color: var(--green);
}


/* =========================================================
   TRACK PLAY BUTTON
   ========================================================= */

.track-play {
    display: flex;

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

    width: 28px;
    height: 28px;

    padding: 0;

    border: none;

    background: transparent;

    color: #555555;

    font-family: inherit;

    font-size: 10px;

    cursor: pointer;

    opacity: 0;

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

.track:hover .track-play,
.track.active .track-play {
    opacity: 1;
}

.track-play:hover {
    color: var(--orange);

    transform: scale(1.15);
}


/* =========================================================
   ACTIVE TRACK
   ========================================================= */

.track.active {
    background: rgba(217, 120, 36, 0.025);

    border-bottom-color: rgba(217, 120, 36, 0.4);
}

.track.active p {
    color: #ffffff;
}

.track.active > span {
    color: var(--orange);
}

.track.active .track-play {
    color: var(--orange);
}


/* =========================================================
   AUDIO PLAYER
   ========================================================= */

.audio-player {
    width: 100%;

    margin-top: 55px;

    padding: 30px 0 10px;

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


/* Player info */

.player-info {
    margin-bottom: 25px;
}

.player-label {
    display: block;

    margin-bottom: 8px;

    color: var(--orange);

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 4px;
}

.player-info h3 {
    color: #eeeeee;

    font-size: 18px;

    font-weight: 300;

    letter-spacing: 2px;
}


/* Progress */

.player-progress {
    display: grid;

    grid-template-columns: 40px 1fr 40px;

    align-items: center;

    gap: 15px;

    margin-bottom: 25px;
}

.player-progress span {
    color: #666666;

    font-size: 9px;

    letter-spacing: 1px;
}

#currentTime {
    text-align: left;
}

#duration {
    text-align: right;
}


/* Progress bar */

#progressBar {
    width: 100%;

    height: 2px;

    margin: 0;

    appearance: none;
    -webkit-appearance: none;

    background: rgba(255, 255, 255, 0.12);

    outline: none;

    cursor: pointer;
}


/* Chrome / Edge / Safari */

#progressBar::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;

    width: 9px;
    height: 9px;

    border: none;
    border-radius: 50%;

    background: var(--orange);

    cursor: pointer;

    transition: transform 0.25s ease;
}

#progressBar::-webkit-slider-thumb:hover {
    transform: scale(1.5);
}


/* Firefox */

#progressBar::-moz-range-thumb {
    width: 9px;
    height: 9px;

    border: none;
    border-radius: 50%;

    background: var(--orange);

    cursor: pointer;
}


/* Player controls */

.player-controls {
    display: flex;

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

    gap: 30px;
}

.player-controls button {
    display: flex;

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

    width: 34px;
    height: 34px;

    padding: 0;

    border: none;

    background: transparent;

    color: #777777;

    font-family: inherit;

    font-size: 12px;

    cursor: pointer;

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

.player-controls button:hover {
    color: var(--orange);

    transform: translateY(-2px);
}


/* Main play button */

.player-controls .play-main {
    width: 48px;
    height: 48px;

    border: 1px solid rgba(217, 120, 36, 0.5);

    border-radius: 50%;

    color: var(--orange);

    font-size: 13px;
}

.player-controls .play-main:hover {
    border-color: var(--orange);

    background: rgba(217, 120, 36, 0.08);

    color: var(--orange);

    transform: scale(1.05);
}


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

@media (max-width: 900px) {

    /* Band */

    .band-section {
        padding: 120px 25px 100px;
    }

    .band-container {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .band-intro {
        max-width: 600px;
    }

    .band-intro h2 {
        font-size: 2.5rem;
    }


    /* Music */

    .music-section {
        padding: 120px 25px 100px;
    }

    .music-header {
        margin-bottom: 60px;
    }

    .music-header h2 {
        font-size: 3rem;
    }

    .album-content {
        grid-template-columns: 1fr 1fr;

        gap: 40px;
    }
}


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

@media (max-width: 650px) {

    /* Navigation */

    nav {
        padding: 20px;
    }

    nav ul {
        gap: 15px;
    }

    nav ul a {
        font-size: 9px;

        letter-spacing: 1px;
    }

    .logo,
    .logo img {
        width: 70px;
    }


    /* Hero */

    .hero h1 {
        font-size: 3rem;

        letter-spacing: 8px;
    }

    .hero h2 {
        font-size: 1rem;

        letter-spacing: 5px;
    }


    /* Band */

    .band-section {
        padding: 120px 25px 100px;
    }

    .band-intro h2 {
        font-size: 2.1rem;
    }

    .photo-placeholder {
        aspect-ratio: 1 / 1;
    }


    /* Music */

    .music-section {
        padding: 120px 25px 100px;
    }

    .music-header h2 {
        font-size: 2.2rem;

        letter-spacing: 2px;
    }

    .music-header {
        margin-bottom: 60px;
    }


    /* Album */

    .album-content {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .album-cover {
        width: 100%;
    }


    /* Tracks */

    .track {
        grid-template-columns: 45px minmax(0, 1fr) 35px;

        min-height: 60px;

        padding-left: 0;
    }

    .track:hover {
        padding-left: 6px;
    }

    .track p {
        font-size: 13px;

        letter-spacing: 1px;
    }

    .track-play {
        opacity: 1;
    }


    /* Streaming */

    .streaming-links {
        gap: 8px;
    }


    /* Player */

    .audio-player {
        margin-top: 45px;

        padding-top: 25px;
    }

    .player-info h3 {
        font-size: 16px;
    }

    .player-progress {
        grid-template-columns: 35px 1fr 35px;

        gap: 10px;
    }

    .player-controls {
        gap: 22px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    nav ul {
        gap: 9px;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .music-header h2 {
        font-size: 1.9rem;
    }

    .streaming-links {
        gap: 6px;
    }
}

/* =========================================================
   RELEASE STRUCTURE
   ========================================================= */

.release {
    position: relative;

    width: 100%;
}


/* ---------------------------------------------------------
   LATEST RELEASE LABEL
   --------------------------------------------------------- */

.release-label {
    display: flex;
    align-items: center;
    gap: 18px;

    margin-bottom: 32px;

    color: var(--orange);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 5px;
}

.release-label::after {
    content: "";

    display: block;

    width: 55px;
    height: 1px;

    background: rgba(217, 120, 36, 0.35);
}


/* ---------------------------------------------------------
   RELEASE CONTENT
   --------------------------------------------------------- */

.release-content {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: start;

    width: 100%;
}


/* ---------------------------------------------------------
   ALBUM COVER
   --------------------------------------------------------- */

.latest-release .album-cover {
    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.18);

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

.latest-release .album-cover:hover {
    border-color: rgba(217, 120, 36, 0.38);

    transform: translateY(-3px);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.25);
}


/* ---------------------------------------------------------
   TRACK AREA
   --------------------------------------------------------- */

.release-tracks {
    width: 100%;

    padding-top: 3px;
}


/* ---------------------------------------------------------
   TRACKLIST
   --------------------------------------------------------- */

.latest-release .tracklist {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.latest-release .track {
    min-height: 63px;
}


/* ---------------------------------------------------------
   PLAYER
   --------------------------------------------------------- */

.latest-release .audio-player {
    margin-top: 48px;

    padding-top: 28px;

    border-top-color: rgba(217, 120, 36, 0.16);
}


/* ---------------------------------------------------------
   PREVIOUS RELEASES
   --------------------------------------------------------- */

.previous-releases {
    position: relative;

    margin-top: 150px;

    padding-top: 55px;

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

.previous-releases::before {
    content: "";

    position: absolute;

    top: -1px;
    left: 0;

    width: 80px;
    height: 1px;

    background: rgba(217, 120, 36, 0.35);
}

.previous-releases-header {
    margin-bottom: 50px;
}

.previous-releases-header .section-label {
    margin-bottom: 18px;
}

.previous-releases-header p {
    margin-top: 0;

    color: #666666;

    font-size: 12px;

    line-height: 1.7;

    letter-spacing: 1px;
}


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

@media (max-width: 900px) {

    .release-content {
        gap: 40px;
    }

    .previous-releases {
        margin-top: 120px;
    }
}


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

@media (max-width: 650px) {

    .release-label {
        margin-bottom: 24px;

        gap: 14px;

        letter-spacing: 4px;
    }

    .release-label::after {
        width: 35px;
    }

    .release-content {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .release-tracks {
        padding-top: 0;
    }

    .latest-release .track {
        min-height: 60px;
    }

    .latest-release .audio-player {
        margin-top: 42px;

        padding-top: 25px;
    }

    .previous-releases {
        margin-top: 100px;

        padding-top: 45px;
    }

    .previous-releases-header {
        margin-bottom: 35px;
    }
}

/* =========================================================
   MEDIA
   ========================================================= */

.media-section {
    position: relative;

    min-height: 100vh;

    padding: 160px 40px 150px;

    background:
        linear-gradient(
            180deg,
            #141414 0%,
            #171717 55%,
            #1a211c 100%
        );

    overflow: hidden;
}


.media-container {
    max-width: 1200px;

    margin: auto;
}


/* ---------------------------------------------------------
   MEDIA HEADER
   --------------------------------------------------------- */

.media-header {
    max-width: 800px;

    margin-bottom: 75px;
}

.media-header h2 {
    margin-bottom: 0;

    color: #eeeeee;

    font-size: 3.2rem;

    line-height: 1.15;

    font-weight: 300;

    letter-spacing: 2px;
}

.media-header h2 span {
    color: var(--green);
}


/* ---------------------------------------------------------
   FEATURED VIDEO
   --------------------------------------------------------- */

.media-featured {
    width: 100%;
}


.media-video {
    width: 100%;

    padding: 14px;

    border: 1px solid rgba(217, 120, 36, 0.22);

    background:
        radial-gradient(
            circle at 70% 30%,
            rgba(69, 105, 74, 0.22),
            transparent 45%
        ),
        radial-gradient(
            circle at 25% 75%,
            rgba(217, 120, 36, 0.10),
            transparent 45%
        ),
        #111111;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.20);
}


.media-video-frame {
    position: relative;

    width: 100%;

    aspect-ratio: 16 / 9;

    overflow: hidden;

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

    background: #0d0d0d;
}


.media-video-frame iframe {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    border: 0;
}


/* ---------------------------------------------------------
   VIDEO INFO
   --------------------------------------------------------- */

.media-video-info {
    padding: 25px 5px 0;
}


.media-video-info span {
    display: block;

    margin-bottom: 10px;

    color: var(--orange);

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 4px;
}


.media-video-info h3 {
    margin-bottom: 10px;

    color: #eeeeee;

    font-size: 22px;

    font-weight: 300;

    letter-spacing: 2px;
}


.media-video-info p {
    color: #666666;

    font-size: 12px;

    line-height: 1.7;

    letter-spacing: 0.5px;
}


/* ---------------------------------------------------------
   TOPIC CHANNEL
   --------------------------------------------------------- */

.media-topic {
    display: flex;

    align-items: center;

    gap: 30px;

    margin-top: 100px;

    padding-top: 45px;

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


.media-topic-line {
    width: 55px;
    height: 1px;

    flex-shrink: 0;

    background: rgba(217, 120, 36, 0.35);
}


.media-topic-content {
    flex: 1;
}


.media-topic-label {
    display: block;

    margin-bottom: 8px;

    color: #999999;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 4px;
}


.media-topic-content p {
    color: #666666;

    font-size: 12px;

    letter-spacing: 0.5px;
}


.media-topic-link {
    display: flex;

    align-items: center;

    gap: 12px;

    color: #777777;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 3px;

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


.media-topic-link span {
    color: var(--orange);

    font-size: 15px;

    transition: transform 0.3s ease;
}


.media-topic-link:hover {
    color: #eeeeee;

    transform: translateX(2px);
}


.media-topic-link:hover span {
    transform: translateX(4px);
}


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

@media (max-width: 900px) {

    .media-section {
        padding: 120px 25px 110px;
    }

    .media-header {
        margin-bottom: 60px;
    }

    .media-header h2 {
        font-size: 3rem;
    }

    .media-topic {
        margin-top: 80px;
    }
}


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

@media (max-width: 650px) {

    .media-section {
        padding: 120px 25px 100px;
    }

    .media-header {
        margin-bottom: 45px;
    }

    .media-header h2 {
        font-size: 2.2rem;

        line-height: 1.18;
    }

    .media-video {
        padding: 10px;
    }

    .media-video-info {
        padding: 22px 2px 0;
    }

    .media-video-info h3 {
        font-size: 18px;
    }

    .media-video-info p {
        font-size: 11px;
    }

    .media-topic {
        align-items: flex-start;

        flex-direction: column;

        gap: 18px;

        margin-top: 70px;

        padding-top: 35px;
    }

    .media-topic-line {
        width: 40px;
    }

    .media-topic-link {
        margin-top: 5px;
    }
}


/* =========================================================
   MEDIA VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .media-header h2 {
        font-size: 1.9rem;
    }

    .media-video-info span {
        font-size: 8px;

        letter-spacing: 3px;
    }

    .media-topic-content p {
        font-size: 11px;
    }
}

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

.contact-section {
    position: relative;

    min-height: 75vh;

    padding: 150px 40px 80px;

    background:
        linear-gradient(
            180deg,
            #1a211c 0%,
            #171717 45%,
            #141414 100%
        );

    overflow: hidden;
}


/* ---------------------------------------------------------
   ATMOSPHERIC LIGHT
   --------------------------------------------------------- */

.contact-section::before {
    content: "";

    position: absolute;

    top: 15%;
    right: -15%;

    width: 600px;
    height: 600px;

    background:
        radial-gradient(
            circle,
            rgba(69, 105, 74, 0.07),
            transparent 68%
        );

    pointer-events: none;
}


/* ---------------------------------------------------------
   CONTACT CONTAINER
   --------------------------------------------------------- */

.contact-container {
    position: relative;

    max-width: 1200px;

    margin: auto;
}


/* ---------------------------------------------------------
   CONTACT HEADER
   --------------------------------------------------------- */

.contact-header {
    max-width: 700px;

    margin-bottom: 80px;
}


.contact-header h2 {
    margin-bottom: 28px;

    color: #eeeeee;

    font-size: 3.2rem;

    line-height: 1.15;

    font-weight: 300;

    letter-spacing: 2px;
}


.contact-header h2 span {
    color: var(--green);
}


.contact-header p {
    max-width: 520px;

    color: #777777;

    font-size: 13px;

    line-height: 1.8;

    letter-spacing: 0.5px;
}


/* ---------------------------------------------------------
   CONTACT LINKS
   --------------------------------------------------------- */

.contact-links {
    width: 100%;

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


.contact-link {
    position: relative;

    display: grid;

    grid-template-columns: 140px minmax(0, 1fr) 40px;

    align-items: center;

    min-height: 95px;

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

    transition:
        padding-left 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease;
}


.contact-link:hover {
    padding-left: 12px;

    background: rgba(255, 255, 255, 0.015);

    border-bottom-color: rgba(217, 120, 36, 0.4);
}


/* ---------------------------------------------------------
   LINK LABEL
   --------------------------------------------------------- */

.contact-link-label {
    color: var(--orange);

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 4px;
}


/* ---------------------------------------------------------
   LINK VALUE
   --------------------------------------------------------- */

.contact-link-value {
    color: #cccccc;

    font-size: 15px;

    letter-spacing: 1px;

    transition: color 0.3s ease;
}


.contact-link:hover .contact-link-value {
    color: #eeeeee;
}


/* ---------------------------------------------------------
   LINK ARROW
   --------------------------------------------------------- */

.contact-link-arrow {
    color: #555555;

    font-size: 18px;

    text-align: right;

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


.contact-link:hover .contact-link-arrow {
    color: var(--orange);

    transform: translateX(5px);
}


/* ---------------------------------------------------------
   CONTACT FOOTER
   --------------------------------------------------------- */

.contact-footer {
    display: flex;

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

    gap: 30px;

    margin-top: 90px;

    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, 0.05);

    color: #444444;

    font-size: 8px;

    font-weight: 400;

    letter-spacing: 4px;
}


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

@media (max-width: 900px) {

    .contact-section {
        padding: 120px 25px 70px;
    }

    .contact-header {
        margin-bottom: 65px;
    }

    .contact-header h2 {
        font-size: 3rem;
    }

    .contact-link {
        grid-template-columns: 120px minmax(0, 1fr) 35px;
    }

    .contact-footer {
        margin-top: 70px;
    }
}


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

@media (max-width: 650px) {

    .contact-section {
        min-height: auto;

        padding: 120px 25px 60px;
    }

    .contact-header {
        margin-bottom: 50px;
    }

    .contact-header h2 {
        font-size: 2.2rem;

        line-height: 1.18;
    }

    .contact-header p {
        font-size: 11px;

        line-height: 1.8;
    }

    .contact-link {
        grid-template-columns: 85px minmax(0, 1fr) 25px;

        min-height: 80px;
    }

    .contact-link:hover {
        padding-left: 6px;
    }

    .contact-link-label {
        font-size: 8px;

        letter-spacing: 3px;
    }

    .contact-link-value {
        font-size: 12px;

        letter-spacing: 0.5px;

        overflow-wrap: anywhere;
    }

    .contact-link-arrow {
        font-size: 15px;
    }

    .contact-footer {
        flex-direction: column;

        align-items: flex-start;

        gap: 12px;

        margin-top: 60px;

        font-size: 7px;

        letter-spacing: 3px;

        line-height: 1.7;
    }
}


/* =========================================================
   CONTACT VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .contact-header h2 {
        font-size: 1.9rem;
    }

    .contact-link {
        grid-template-columns: 75px minmax(0, 1fr) 20px;
    }

    .contact-link-value {
        font-size: 11px;
    }
}

