* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #07151a;
    color: #f8f3e9;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}


/* HEADER */

.site-header {
    min-height: 88px;
    padding: 0 4.5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(4, 14, 18, 0.98);
}

.brand {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-main {
    color: #efb255;
    font-weight: 900;
    letter-spacing: 2px;
    font-size: 1.25rem;
}

.brand-small {
    margin-top: 6px;
    font-size: 0.68rem;
    letter-spacing: 4px;
}

.desktop-nav {
    display: flex;
    gap: 24px;
}

.desktop-nav a {
    font-size: 0.76rem;
    font-weight: 700;
}

.menu-button {
    display: none;
    background: transparent;
    color: white;
    border: 0;
    font-size: 2rem;
}

.mobile-nav {
    display: none;
}


/* BUTTONS */

.button {
    display: inline-block;
    padding: 14px 26px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 800;
}

.button-gold {
    background: #efb255;
    color: #07151a;
}

.button-outline {
    border: 2px solid #efb255;
    background: rgba(0,0,0,0.25);
}


/* HERO DESKTOP */

.hero {
    min-height: 720px;
    position: relative;
    background-image: url("images/01_hero_banner.jpg");
    background-size: cover;
    background-position: center;
}

.mobile-hero-title {
    display: none;
}

.hero-actions {
    position: absolute;
    left: 8%;
    bottom: 58px;
    display: flex;
    gap: 14px;
}


/* INTRO */

.intro {
    padding: 75px 7% 65px;
    text-align: center;
    max-width: 1100px;
    margin: auto;
}

.gold-script {
    color: #efb255;
}

.intro h2 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 0.95;
}

.intro h2 span {
    color: #efb255;
}

.intro-text {
    color: #c6d0d2;
}


/* HEADING */

.section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.section-heading > p {
    color: #efb255;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 4px;
}

.section-heading h2 {
    font-size: clamp(2.3rem, 5vw, 4rem);
}


/* CARDS */

.cards-section {
    padding: 35px 5% 90px;
}

.cards {
    max-width: 1500px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.card {
    background: #10272f;
    border-radius: 18px;
    overflow: hidden;
}

.card-picture {
    height: 275px;
    background-size: cover;
    background-position: center;
}

.music-picture {
    background-image: url("images/02_music_tile.jpg");
}

.travel-picture {
    background-image: url("images/03_travel_tile.jpg");
}

.history-picture {
    background-image: url("images/04_history_tile.jpg");
}

.photos-picture {
    background-image: url("images/05_photos_tile.jpg");
}

.songs-picture {
    background-image: url("images/06_custom_songs_tile.jpg");
}

.card-text {
    padding: 22px;
}

.card-label {
    color: #efb255;
    font-size: 0.64rem;
    font-weight: 800;
}

.card-text p:last-child {
    color: #bdc9cc;
}


/* STORY DESKTOP */

.story {
    min-height: 560px;
    position: relative;
    background-image: url("images/07_story_filmstrip.jpg");
    background-size: cover;
    background-position: center;
}

.mobile-story-copy {
    display: none;
}

.story-button-wrap {
    position: absolute;
    left: 8%;
    bottom: 48px;
}


/* QUOTE DESKTOP */

.quote-art {
    min-height: 310px;
    background-image: url("images/08_quote_banner.jpg");
    background-size: cover;
    background-position: center;
}

.mobile-quote {
    display: none;
}


/* LATEST MUSIC DESKTOP */

.latest-music {
    min-height: 560px;
    position: relative;
    background-color: #07151a;
    background-image: url("images/09_latest_music_section.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center top;
}

.mobile-music {
    display: none;
}

.music-actions {
    position: absolute;
    left: 50%;
    bottom: 34px;
    transform: translateX(-50%);
}


/* CUSTOM SONGS DESKTOP */

.custom-song-banner {
    min-height: 440px;
    padding: 55px 8%;
    display: flex;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(7,21,26,0.96),
            rgba(7,21,26,0.30)
        ),
        url("images/06_custom_songs_tile.jpg");

    background-size: cover;
}

.custom-song-content {
    max-width: 590px;
}

.overline {
    color: #efb255;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 4px;
}

.custom-song-content h2 {
    font-size: clamp(2.7rem, 5vw, 4.6rem);
    line-height: 0.92;
}


/* FOLLOW DESKTOP */

.journey {
    width: 100%;
    aspect-ratio: 1920 / 500;
    background-image: url("images/10_follow_our_journey.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.mobile-journey-copy {
    display: none;
}


/* FOOTER */

footer {
    min-height: 420px;
    padding: 58px 7% 30px;
    text-align: center;

    background:
        linear-gradient(
            rgba(3,11,14,0.68),
            rgba(3,11,14,0.86)
        ),
        url("images/11_footer.jpg");

    background-size: cover;
}

.footer-logo {
    color: #efb255;
    font-size: 2rem;
    font-weight: 900;
}

.footer-kind {
    color: #efb255;
}

.footer-links {
    margin: 28px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}


/* TABLET */

@media (max-width: 1150px) and (min-width: 761px) {

    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =================================================
   MOBILE ONLY
   DESKTOP ABOVE STAYS UNCHANGED
   ================================================= */

@media (max-width: 760px) {

    body {
        overflow-x: hidden;
    }


    /* HEADER */

    .site-header {
        min-height: 70px;
        padding: 10px 16px;
    }

    .brand-main {
        font-size: 0.9rem;
    }

    .brand-small {
        font-size: 0.48rem;
    }

    .desktop-nav {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .mobile-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        z-index: 999;
        padding: 22px;
        background: #07151a;
    }

    .mobile-nav.open {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }


    /* HERO MOBILE */

    .hero {
        min-height: 600px;

        background:
            linear-gradient(
                0deg,
                rgba(5,17,22,0.96),
                rgba(5,17,22,0.05) 60%
            ),
            url("images/01_hero_banner.jpg");

        background-size: auto 100%;
        background-repeat: no-repeat;
        background-position: 57% center;
    }

    .mobile-hero-title {
        display: block;
        position: absolute;
        left: 18px;
        right: 18px;
        bottom: 135px;
    }

    .mobile-hero-title > p:first-child {
        color: #efb255;
        font-size: 0.6rem;
        font-weight: 800;
        letter-spacing: 3px;
    }

    .mobile-hero-title h1 {
        margin: 5px 0;
        font-size: 2.7rem;
        line-height: 0.85;
    }

    .mobile-hero-title h1 span {
        color: #efb255;
    }

    .mobile-tagline {
        margin-top: 12px;
        font-size: 1rem;
    }

    .hero-actions {
        left: 18px;
        right: 18px;
        bottom: 18px;
        flex-direction: column;
        gap: 8px;
    }

    .hero-actions .button {
        width: 100%;
        text-align: center;
    }


    /* INTRO */

    .intro {
        padding: 48px 18px;
    }

    .intro h2 {
        font-size: 2.55rem;
    }


    /* CARDS */

    .cards-section {
        padding: 25px 16px 55px;
    }

    .cards {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .card-picture {
        height: 310px;
    }

    .card-text {
        padding: 18px;
    }


    /* STORY MOBILE */

    .story {
        min-height: 460px;

        background:
            linear-gradient(
                rgba(5,17,22,0.15),
                rgba(5,17,22,0.72)
            ),
            url("images/07_story_filmstrip.jpg");

        background-size: cover;
        background-position: center;
    }

    .mobile-story-copy {
        display: block;
        position: absolute;
        left: 18px;
        right: 18px;
        bottom: 95px;
    }

    .mobile-story-copy p {
        color: #efb255;
        font-size: 0.6rem;
        font-weight: 800;
        letter-spacing: 3px;
    }

    .mobile-story-copy h2 {
        margin: 5px 0;
        font-size: 2.35rem;
        line-height: 0.9;
    }

    .story-button-wrap {
        left: 18px;
        right: 18px;
        bottom: 20px;
    }

    .story-button-wrap .button {
        width: 100%;
        text-align: center;
    }


    /* QUOTE MOBILE */

    .quote-art {
        min-height: 330px;
        display: flex;
        align-items: center;
        justify-content: center;

        background:
            linear-gradient(
                rgba(7,21,26,0.35),
                rgba(7,21,26,0.60)
            ),
            url("images/08_quote_banner.jpg");

        background-size: cover;
        background-position: center;
    }

    .mobile-quote {
        display: block;
        padding: 28px;
        text-align: center;
    }

    .mobile-quote p {
        margin: 0;
        font-size: 1.8rem;
        line-height: 1.15;
        font-weight: 600;
    }

    .mobile-quote strong {
        color: #efb255;
    }


    /* LATEST MUSIC MOBILE */

    .latest-music {
        min-height: auto;
        padding: 55px 18px 95px;
        background-image: none;
    }

    .mobile-music {
        display: block;
    }

    .mobile-label {
        margin: 0;
        color: #efb255;
        font-size: 0.6rem;
        letter-spacing: 3px;
        font-weight: 800;
        text-align: center;
    }

    .mobile-music h2 {
        margin: 5px 0 30px;
        text-align: center;
        font-size: 2.25rem;
    }

    .mobile-music-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .mobile-music-card {
        overflow: hidden;
        border-radius: 12px;
        background: #10272f;
    }

    .mobile-music-card img {
        width: 100%;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        display: block;
    }

    .mobile-music-card h3 {
        margin: 0;
        padding: 12px 8px;
        font-size: 0.85rem;
        text-align: center;
    }

    .music-actions {
        left: 18px;
        right: 18px;
        bottom: 22px;
        transform: none;
    }

    .music-actions .button {
        width: 100%;
        text-align: center;
    }


    /* CUSTOM SONGS MOBILE */

    .custom-song-banner {
        min-height: 430px;
        padding: 42px 18px;

        background:
            linear-gradient(
                rgba(7,21,26,0.48),
                rgba(7,21,26,0.90)
            ),
            url("images/06_custom_songs_tile.jpg");

        background-size: cover;
        background-position: center;
    }

    .custom-song-content h2 {
        font-size: 2.7rem;
        line-height: 0.9;
    }

    .custom-song-content p {
        font-size: 0.95rem;
    }


    /* FOLLOW MOBILE */

    .journey {
        aspect-ratio: auto;
        min-height: 360px;

        display: flex;
        align-items: center;
        justify-content: center;

        background:
            linear-gradient(
                rgba(5,17,22,0.65),
                rgba(5,17,22,0.86)
            ),
            url("images/10_follow_our_journey.jpg");

        background-size: cover;
        background-position: center;
    }

    .mobile-journey-copy {
        display: block;
        padding: 30px 20px;
        text-align: center;
    }

    .mobile-journey-copy > p:first-child {
        color: #efb255;
        font-size: 0.6rem;
        font-weight: 800;
        letter-spacing: 3px;
    }

    .mobile-journey-copy h2 {
        margin: 10px 0;
        font-size: 2.2rem;
        line-height: 0.95;
    }

    .journey-text {
        margin-top: 18px;
        font-size: 1.1rem;
    }


    /* FOOTER MOBILE */

    footer {
        min-height: 380px;
        padding: 45px 18px 25px;
    }

    .footer-logo {
        font-size: 1.4rem;
    }

    .footer-links {
        gap: 12px 16px;
    }

}