/* =========================================================
   ED-M ENTERTAINMENT
   SHARED STYLE
   ========================================================= */

:root {
    --burgundy: #75162D;
    --black: #050505;
    --white: #ffffff;
    --gray: #8d8d8d;
    --dark-gray: #151515;
    --border: #292929;
    --max-width: 1400px;
}

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

html {
    scroll-behavior: smooth;
    background: var(--black);
}

body {
    background: var(--black);
    color: var(--white);
    font-family:
        Arial,
        Helvetica,
        sans-serif;
    overflow-x: hidden;
}

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

button {
    font-family: inherit;
}

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


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

.site-header {
    width: 100%;
    background: #050505;
    color: #fff;
    position: relative;
    z-index: 1000;
}

.header-inner {
    height: 76px;
    max-width: var(--max-width);
    margin: auto;
    padding: 0 35px;

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

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);

    width: 180px;
    display: flex;
    justify-content: center;
}

.logo img {
    width: 100%;
    max-height: 42px;
    object-fit: contain;
}

.menu-toggle {
    width: 34px;
    height: 34px;

    background: transparent;
    border: none;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;

    cursor: pointer;
    z-index: 1002;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: #fff;

    display: block;

    transition: .25s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.language {
    margin-left: auto;

    font-size: 11px;
    font-weight: bold;
    letter-spacing: .08em;
}


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

.mobile-navigation {
    position: absolute;
    top: 76px;
    left: 0;

    width: 100%;

    background: #050505;

    padding: 25px 30px 35px;

    border-top: 1px solid #202020;

    transform: translateY(-15px);
    opacity: 0;
    visibility: hidden;

    transition: .25s;
}

.mobile-navigation.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-navigation > a,
.mobile-navigation button {
    display: block;

    width: 100%;

    padding: 15px 0;

    border: none;
    border-bottom: 1px solid #242424;

    background: transparent;

    color: #fff;

    text-align: left;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: .1em;
}

.mobile-navigation button {
    cursor: pointer;
}

.mobile-navigation button span {
    float: right;
}

.artists-list {
    display: none;
    padding-left: 15px;
}

.artists-list.active {
    display: block;
}

.artists-list a {
    display: block;

    padding: 12px 0;

    color: #aaa;

    font-size: 12px;
}


/* =========================================================
   COMMON CONTAINER
   ========================================================= */

.section-container {
    width: min(
        calc(100% - 90px),
        var(--max-width)
    );

    margin: auto;
}


/* =========================================================
   MV
   ========================================================= */

.mv-section {
    background: #000;
}

.mv-slider {
    width: 100%;
    position: relative;

    overflow: hidden;
}

.mv-track {
    display: flex;

    transition:
        transform .55s
        cubic-bezier(.22, .61, .36, 1);
}

.mv-slide {
    min-width: 100%;

    position: relative;

    height: min(82vh, 850px);

    overflow: hidden;
}

.mv-slide img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.mv-slide::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.8),
            rgba(0,0,0,.05) 60%
        );
}

.mv-info {
    position: absolute;

    left: 7%;
    bottom: 12%;

    z-index: 2;
}

.mv-info .artist {
    font-size: 12px;

    font-weight: bold;

    letter-spacing: .2em;

    margin-bottom: 12px;
}

.mv-info h1 {
    font-size: clamp(
        40px,
        7vw,
        100px
    );

    line-height: .9;

    letter-spacing: -.05em;

    margin-bottom: 28px;
}

.watch-button {
    display: inline-flex;

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

    min-width: 120px;
    height: 42px;

    padding: 0 22px;

    border: 1px solid #fff;

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

    letter-spacing: .16em;

    transition: .2s;
}

.watch-button:hover {
    background: #fff;
    color: #000;
}


/* =========================================================
   MV CONTROLS
   ========================================================= */

.mv-arrow {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 48px;
    height: 48px;

    border: none;

    background: rgba(0,0,0,.35);

    color: #fff;

    font-size: 32px;

    cursor: pointer;

    z-index: 5;

    transition: .2s;
}

.mv-arrow:hover {
    background: rgba(117,22,45,.9);
}

.mv-prev {
    left: 25px;
}

.mv-next {
    right: 25px;
}

.mv-pagination {
    position: absolute;

    bottom: 25px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;

    gap: 7px;

    z-index: 5;
}

.mv-dot {
    width: 25px;
    height: 2px;

    border: none;

    background: rgba(255,255,255,.35);

    cursor: pointer;
}

.mv-dot.active {
    background: #fff;
}


/* =========================================================
   SHAPE
   ========================================================= */

.shape-transition {
    height: 130px;

    background: #fff;

    position: relative;

    margin-top: -60px;

    z-index: 5;

    clip-path:
        ellipse(
            75% 70% at 50% 100%
        );
}


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

.about-section {
    background: #fff;
    color: #111;

    padding: 100px 0 130px;
}

.section-label {
    font-size: 10px;

    font-weight: 800;

    letter-spacing: .22em;

    color: var(--burgundy);

    margin-bottom: 15px;
}

.about-section h1,
.section-header h2 {
    font-size: clamp(
        42px,
        7vw,
        86px
    );

    line-height: .9;

    letter-spacing: -.06em;
}

.about-content {
    display: grid;

    grid-template-columns:
        .6fr 1.4fr;

    gap: 80px;

    margin-top: 70px;

    border-top: 1px solid #111;

    padding-top: 35px;
}

.about-company {
    font-size: 13px;

    font-weight: 700;

    letter-spacing: .08em;

    text-transform: uppercase;
}

.about-content p {
    max-width: 850px;

    font-size: clamp(
        18px,
        2vw,
        29px
    );

    line-height: 1.45;

    letter-spacing: -.025em;
}


/* =========================================================
   COMEBACK
   ========================================================= */

.comeback-section {
    background: #fff;
    color: #111;

    padding: 80px 0 120px;
}

.section-header {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    margin-bottom: 45px;
}

.comeback-grid {
    display: grid;

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

    gap: 20px;
}

.comeback-card {
    display: block;
}

.comeback-image {
    aspect-ratio: 1 / 1;

    overflow: hidden;

    background: #ddd;
}

.comeback-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .5s;
}

.comeback-card:hover
.comeback-image img {
    transform: scale(1.05);
}

.card-title {
    margin-top: 14px;

    font-size: 14px;

    font-weight: 800;
}

.card-artist {
    margin-top: 5px;

    color: #777;

    font-size: 10px;

    letter-spacing: .14em;

    text-transform: uppercase;
}


/* =========================================================
   SHOP
   ========================================================= */

.shop-section {
    background: #75162D;

    color: #fff;

    padding: 100px 0 120px;
}

.shop-section .section-label {
    color: #fff;
    opacity: .65;
}

.see-all {
    font-size: 11px;

    font-weight: bold;

    letter-spacing: .15em;

    border-bottom: 1px solid #fff;

    padding-bottom: 5px;
}

.shop-slider {
    position: relative;
}

.shop-viewport {
    overflow: hidden;
}

.shop-track {
    display: flex;

    gap: 18px;

    transition:
        transform .5s
        cubic-bezier(.22,.61,.36,1);
}

.shop-card {
    flex: 0 0 calc(
        (100% - 90px) / 6
    );

    min-width: 0;
}

.shop-card-image {
    width: 100%;

    aspect-ratio: 1 / 1;

    overflow: hidden;

    background: #eee;
}

.shop-card-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .5s;
}

.shop-card:hover
.shop-card-image img {
    transform: scale(1.05);
}

.shop-card .card-title {
    color: #fff;
}

.shop-card .card-artist {
    color: rgba(255,255,255,.6);
}

.shop-arrow {
    position: absolute;

    top: 40%;

    width: 42px;
    height: 42px;

    border: 1px solid rgba(255,255,255,.6);

    background: rgba(0,0,0,.2);

    color: #fff;

    font-size: 25px;

    z-index: 5;
}

.shop-prev {
    left: -20px;
}

.shop-next {
    right: -20px;
}


/* =========================================================
   ARTIST PAGE
   ========================================================= */

.artist-page {
    min-height: 80vh;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    background: #000;
}

.artist-image {
    min-height: 700px;

    overflow: hidden;
}

.artist-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.artist-information {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 80px;
}

.artist-information h1 {
    font-size: clamp(
        55px,
        8vw,
        110px
    );

    line-height: .85;

    letter-spacing: -.06em;

    margin-bottom: 35px;
}

.artist-information p {
    max-width: 520px;

    color: #aaa;

    font-size: 15px;

    line-height: 1.8;
}

.artist-socials {
    display: flex;

    flex-wrap: wrap;

    gap: 20px;

    margin-top: 35px;
}

.artist-socials a {
    font-size: 10px;

    font-weight: bold;

    letter-spacing: .14em;

    border-bottom: 1px solid #fff;

    padding-bottom: 5px;
}

.discography-section {
    padding: 100px 0;

    background: #fff;

    color: #111;
}

.discography-section h2 {
    font-size: clamp(
        40px,
        6vw,
        75px
    );

    letter-spacing: -.05em;
}

.discography-placeholder {
    margin-top: 40px;

    border-top: 1px solid #111;

    padding-top: 30px;
}


/* =========================================================
   NEWSROOM
   ========================================================= */

.newsroom-header {
    background: #000;

    padding: 120px 0 90px;
}

.newsroom-header h1 {
    font-size: clamp(
        60px,
        10vw,
        130px
    );

    line-height: .85;

    letter-spacing: -.07em;
}

.newsroom-section {
    background: #000;

    padding: 0 0 120px;
}

.news-feature {
    max-width: 1000px;

    margin: auto auto 60px;

    position: relative;
}

.news-feature img {
    width: 100%;

    aspect-ratio: 16 / 9;

    object-fit: cover;
}

.news-feature-title {
    position: absolute;

    left: 25px;
    bottom: 25px;

    max-width: 90%;

    font-size: clamp(
        22px,
        4vw,
        48px
    );

    font-weight: 800;

    line-height: 1;

    text-shadow:
        0 2px 20px rgba(0,0,0,.8);
}

.news-filter {
    margin-bottom: 50px;

    border-bottom: 1px solid #333;

    padding-bottom: 35px;
}

.news-filter input {
    width: 100%;

    height: 50px;

    background: #fff;

    color: #111;

    border: none;

    padding: 0 15px;

    outline: none;

    margin-bottom: 18px;
}

.categories {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;
}

.categories button {
    background: transparent;

    border: 1px solid #fff;

    color: #fff;

    padding: 8px 15px;

    font-size: 11px;

    cursor: pointer;
}

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

.news-grid {
    display: grid;

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

    gap: 45px 25px;
}

.news-card {
    display: block;
}

.news-card-image {
    aspect-ratio: 16 / 10;

    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .5s;
}

.news-card:hover
.news-card-image img {
    transform: scale(1.04);
}

.news-date {
    margin-top: 17px;

    color: #777;

    font-size: 10px;

    letter-spacing: .13em;
}

.news-card h2 {
    margin-top: 10px;

    font-size: 20px;

    line-height: 1.15;
}

.news-card .artist {
    margin-top: 8px;

    color: #aaa;

    font-size: 10px;

    font-weight: bold;

    letter-spacing: .12em;

    text-transform: uppercase;
}


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

.article-section {
    background: #000;

    padding: 90px 0 120px;
}

.article {
    max-width: 1000px;

    margin: auto;
}

.article-cover {
    width: 100%;

    aspect-ratio: 16 / 9;

    object-fit: cover;

    margin-bottom: 40px;
}

.article-meta {
    display: flex;

    gap: 15px;

    color: #777;

    font-size: 10px;

    letter-spacing: .14em;

    text-transform: uppercase;
}

.article h1 {
    margin: 20px 0 40px;

    font-size: clamp(
        45px,
        8vw,
        100px
    );

    line-height: .9;

    letter-spacing: -.06em;
}

.article-content {
    max-width: 760px;

    color: #bbb;

    font-size: 17px;

    line-height: 1.9;
}

.article-content p {
    margin-bottom: 25px;
}

.back-link {
    display: inline-block;

    margin-top: 40px;

    font-size: 11px;

    font-weight: bold;

    letter-spacing: .14em;
}


/* =========================================================
   PRIVACY POLICY
   ========================================================= */

.privacy-section {
    background: #fff;

    color: #111;

    padding: 100px 0 130px;
}

.privacy-container {
    max-width: 950px;

    margin: auto;
}

.privacy-logo {
    width: 160px;

    margin-bottom: 70px;
}

.privacy-section h1 {
    font-size: clamp(
        50px,
        8vw,
        100px
    );

    letter-spacing: -.06em;

    line-height: .9;

    margin-bottom: 15px;
}

.last-updated {
    color: #777;

    font-size: 12px;

    margin-bottom: 70px;
}

.privacy-section h2 {
    margin-top: 55px;

    margin-bottom: 15px;

    font-size: 24px;
}

.privacy-section p,
.privacy-section li {
    color: #444;

    font-size: 15px;

    line-height: 1.8;
}

.privacy-section ul {
    padding-left: 20px;
}

.privacy-section table {
    width: 100%;

    border-collapse: collapse;

    margin-top: 25px;
}

.privacy-section th,
.privacy-section td {
    border: 1px solid #ddd;

    padding: 13px;

    text-align: left;

    font-size: 13px;
}

.privacy-section th {
    background: #f5f5f5;
}


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

.site-footer {
    background: #000;

    color: #fff;

    border-top: 1px solid #222;

    padding: 70px 0 25px;
}

.footer-container {
    width: min(
        calc(100% - 90px),
        var(--max-width)
    );

    margin: auto;
}

.footer-company {
    font-size: 18px;

    font-weight: 800;

    letter-spacing: -.02em;

    margin-bottom: 35px;
}

.footer-socials {
    display: flex;

    flex-wrap: wrap;

    gap: 20px;
}

.footer-socials a {
    color: #aaa;

    font-size: 10px;

    font-weight: bold;

    letter-spacing: .12em;

    text-transform: uppercase;
}

.footer-socials a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    margin-top: 70px;

    padding-top: 20px;

    border-top: 1px solid #222;

    color: #666;

    font-size: 9px;

    letter-spacing: .1em;
}


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

@media (max-width: 1000px) {

    .section-container,
    .footer-container {
        width: calc(100% - 50px);
    }

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

    .shop-card {
        flex-basis:
            calc((100% - 54px) / 4);
    }

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

    .artist-page {
        grid-template-columns:
            1fr 1fr;
    }

}


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

@media (max-width: 700px) {

    .header-inner {
        height: 60px;

        padding: 0 18px;
    }

    .logo {
        width: 140px;
    }

    .mobile-navigation {
        top: 60px;
    }

    .section-container,
    .footer-container {
        width: calc(100% - 30px);
    }

    .mv-slide {
        height: 72vh;

        min-height: 500px;
    }

    .mv-info {
        left: 20px;
        bottom: 70px;
    }

    .mv-info h1 {
        font-size: 48px;
    }

    .mv-prev {
        left: 10px;
    }

    .mv-next {
        right: 10px;
    }

    .shape-transition {
        height: 75px;

        margin-top: -35px;
    }

    .about-section {
        padding: 65px 0 80px;
    }

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

        gap: 30px;

        margin-top: 40px;
    }

    .about-content p {
        font-size: 19px;
    }

    .section-header {
        align-items: flex-start;
    }

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

        gap: 15px;
    }

    .shop-section {
        padding: 70px 0 90px;
    }

    .shop-card {
        flex-basis:
            calc((100% - 15px) / 2);
    }

    .shop-arrow {
        width: 36px;
        height: 36px;
    }

    .shop-prev {
        left: -8px;
    }

    .shop-next {
        right: -8px;
    }

    .artist-page {
        display: block;
    }

    .artist-image {
        min-height: 75vh;
    }

    .artist-information {
        padding: 60px 20px;
    }

    .artist-information h1 {
        font-size: 60px;
    }

    .newsroom-header {
        padding: 80px 0 55px;
    }

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

    .news-feature-title {
        left: 15px;
        bottom: 15px;
    }

    .article-section {
        padding: 55px 0 80px;
    }

    .article h1 {
        font-size: 48px;
    }

    .privacy-section {
        padding: 65px 0 90px;
    }

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

    .privacy-section table {
        font-size: 11px;
    }

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

    .footer-bottom {
        flex-direction: column;

        margin-top: 45px;
    }

}


/* =========================================================
   VERY SMALL PHONE
   ========================================================= */

@media (max-width: 380px) {

    .logo {
        width: 120px;
    }

    .mv-info h1 {
        font-size: 40px;
    }

    .comeback-grid {
        gap: 10px;
    }

    .shop-card {
        flex-basis: 100%;
    }

}

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

.discography-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    margin-top: 40px;
}

.release-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

.release-cover {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #eee;
}

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

.release-card:hover .release-cover img {
    transform: scale(1.05);
}

.release-info {
    padding-top: 14px;
}

.release-type {
    font-size: 11px;
    letter-spacing: 1.5px;
    font-weight: 600;
    opacity: 0.6;
    margin-bottom: 6px;
}

.release-info h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.release-info p {
    margin: 6px 0 0;
    font-size: 13px;
    opacity: 0.6;
}


/* TABLET */

@media (max-width: 900px) {

    .discography-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px;
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .discography-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        margin-top: 28px;
    }

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

    .release-type {
        font-size: 9px;
    }

    .release-info p {
        font-size: 12px;
    }

}