@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');


:root {
    --bg: #0b0f0b;
    --bg-light: #111811;
    --card: #151d15;

    --text: #f0ead4;
    --text-muted: #a6a596;

    --accent: #c47732;
    --accent-light: #df9449;

    --border: rgba(240, 234, 212, .12);

    --radius: 24px;
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


html {
    scroll-behavior: smooth;
}


body {
    background: var(--bg);
    color: var(--text);

    font-family: "Inter", sans-serif;

    line-height: 1.5;

    overflow-x: hidden;
	
	background:
        linear-gradient(
            rgba(8, 12, 8, 0.58),
            rgba(8, 12, 8, 0.92)
        ),
        url("images/cover.png") center / cover no-repeat;

    background-attachment: fixed;;
}

@media (max-width: 600px) {
    body {
        background-attachment: scroll;
    }
}


a {
    color: inherit;
    text-decoration: none;
}


.container {
    width: min(1280px, calc(100% - 80px));
    margin: 0 auto;
}


/* ================================
   HEADER
================================ */

.header {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 20;

    padding: 28px 0;
}


.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.logo {
    font-size: 18px;
    font-weight: 900;

    letter-spacing: -.03em;
}


.logo span {
    color: var(--accent-light);
}


.nav {
    display: flex;
    gap: 40px;

    color: var(--text-muted);

    font-size: 14px;
}


.nav a {
    transition: color .2s ease;
}


.nav a:hover {
    color: var(--text);
}


.header__button {
    border: 1px solid var(--border);

    padding: 12px 20px;

    border-radius: 100px;

    font-size: 13px;
    font-weight: 600;

    transition: .2s ease;
}


.header__button:hover {
    background: var(--text);
    color: var(--bg);
}


/* ================================
   BUTTONS
================================ */

.button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    min-height: 56px;

    padding: 0 24px;

    border-radius: 14px;

    font-size: 15px;
    font-weight: 700;

    transition:
        transform .2s ease,
        background .2s ease,
        color .2s ease;
}


.button:hover {
    transform: translateY(-2px);
}


.button--primary {
    background: var(--accent);
    color: white;
}


.button--primary:hover {
    background: var(--accent-light);
}


.button--ghost {
    border: 1px solid var(--border);
    color: var(--text);
}


.button--ghost:hover {
    background: var(--text);
    color: var(--bg);
}


.button--dark {
    background: #0b0f0b;
    color: var(--text);
}


.button span {
    font-size: 20px;
}


/* ================================
   HERO
================================ */

.hero {
    min-height: 850px;

    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 75% 35%,
            rgba(80, 91, 45, .28),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #111711 0%,
            #0b0f0b 100%
        );
}


.hero__inner {
    min-height: 850px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    position: relative;
}


.hero__content {
    padding-top: 80px;

    position: relative;
    z-index: 5;
}


.eyebrow {
    color: var(--accent-light);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: .16em;

    margin-bottom: 24px;
}


.hero h1 {
    font-size: clamp(56px, 6vw, 88px);

    line-height: .94;

    letter-spacing: -.065em;

    font-weight: 800;
}


.hero h1 span {
    color: var(--accent-light);
}


.hero__description {
    max-width: 510px;

    margin-top: 35px;

    color: var(--text-muted);

    font-size: 19px;
    line-height: 1.6;
}


.hero__actions {
    display: flex;

    gap: 12px;

    margin-top: 40px;
}


/* Hero visual */

.hero__visual {
    height: 700px;

    position: relative;
}


.moon {
    position: absolute;

    width: 260px;
    height: 260px;

    border-radius: 50%;

    background: #d8d1aa;

    opacity: .9;

    top: 100px;
    right: 120px;

    box-shadow:
        0 0 100px rgba(216, 209, 170, .15);
}


/* Trees */

.tree {
    position: absolute;

    width: 0;
    height: 0;

    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 270px solid #172019;
}


.tree--1 {
    right: 0;
    bottom: 60px;
}


.tree--2 {
    right: 170px;
    bottom: 40px;

    transform: scale(.75);
}


.tree--3 {
    right: 310px;
    bottom: 20px;

    transform: scale(.55);
}


/* Simple rabbit placeholder */

.rabbit {
    position: absolute;

    right: 190px;
    bottom: 70px;

    width: 130px;
    height: 260px;
}


.rabbit__head {
    position: absolute;

    left: 25px;
    top: 60px;

    width: 80px;
    height: 80px;

    border-radius: 50%;

    background: #d5cdb6;
}


.rabbit__body {
    position: absolute;

    left: 10px;
    top: 125px;

    width: 110px;
    height: 130px;

    border-radius: 55px 55px 25px 25px;

    background: #c5bea8;
}


.rabbit__ear {
    position: absolute;

    top: 0;

    width: 35px;
    height: 100px;

    border-radius: 50px;

    background: #d5cdb6;
}


.rabbit__ear--left {
    left: 30px;

    transform: rotate(-10deg);
}


.rabbit__ear--right {
    left: 68px;

    transform: rotate(10deg);
}


.hero__label {
    position: absolute;

    right: 0;
    bottom: 30px;

    width: 210px;

    padding: 18px;

    border-left: 2px solid var(--accent);

    color: var(--text-muted);

    font-size: 11px;
    line-height: 1.5;
    letter-spacing: .08em;
}


.hero__label span {
    color: var(--accent-light);

    font-size: 18px;
}


/* ================================
   RELEASE
================================ */

.release {
    padding: 130px 0;

    background: var(--bg);
}


.section-heading {
    margin-bottom: 45px;
}


.section-heading h2 {
    font-size: clamp(42px, 5vw, 64px);

    line-height: 1;

    letter-spacing: -.05em;
}


.section-heading h2 span {
    color: var(--accent-light);
}


.release-card {
    min-height: 450px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    overflow: hidden;

    border-radius: var(--radius);

    background: var(--card);

    border: 1px solid var(--border);
}


.release-card__visual {
    min-height: 450px;

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at 50% 40%,
            rgba(196, 119, 50, .35),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #171f16,
            #090c09
        );
}


.release-card__glow {
    width: 180px;
    height: 180px;

    border-radius: 50%;

    background: #cf8238;

    opacity: .35;

    filter: blur(50px);
}


.release-card__sign {
    position: absolute;

    z-index: 2;

    text-align: center;

    color: #f2d59b;

    font-size: 26px;
    font-weight: 800;

    transform: rotate(-4deg);

    text-shadow:
        0 0 20px rgba(242, 213, 155, .3);
}


.release-card__sign strong {
    font-size: 46px;
}


.release-card__trees {
    position: absolute;

    bottom: 20px;

    width: 100%;

    color: #172019;

    font-size: 100px;

    white-space: nowrap;

    opacity: .8;
}


.release-card__content {
    padding: 65px;
}


.release-card__tag {
    display: inline-block;

    padding: 7px 12px;

    border-radius: 100px;

    background: rgba(196, 119, 50, .15);

    color: var(--accent-light);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: .1em;
}


.release-card h2 {
    margin-top: 25px;

    font-size: 64px;

    line-height: .95;

    letter-spacing: -.06em;
}


.release-card h2 span {
    color: var(--accent-light);
}


.release-card p {
    max-width: 480px;

    margin-top: 25px;

    color: var(--text-muted);

    font-size: 17px;
}


.release-card__buttons {
    display: flex;

    gap: 12px;

    margin-top: 35px;
}


/* ================================
   CONTENT
================================ */

.content {
    padding: 130px 0;

    background: #101610;
}


.content-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}


.content-card {
    position: relative;

    min-height: 330px;

    padding: 35px;

    border-radius: var(--radius);

    background: #151d15;

    border: 1px solid var(--border);

    overflow: hidden;

    transition:
        transform .25s ease,
        border-color .25s ease;
}


.content-card:hover {
    transform: translateY(-6px);

    border-color: rgba(223, 148, 73, .35);
}


.content-card__number {
    position: absolute;

    top: 30px;
    right: 30px;

    color: rgba(240, 234, 212, .18);

    font-size: 13px;
    font-weight: 700;
}


.content-card__icon {
    width: 60px;
    height: 60px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: rgba(196, 119, 50, .13);

    color: var(--accent-light);

    font-size: 25px;

    margin-bottom: 50px;
}


.content-card h3 {
    font-size: 29px;

    letter-spacing: -.04em;
}


.content-card p {
    margin-top: 12px;

    color: var(--text-muted);

    font-size: 15px;

    line-height: 1.6;
}


.content-card a {
    display: inline-block;

    margin-top: 25px;

    color: var(--accent-light);

    font-size: 14px;
    font-weight: 700;
}


/* ================================
   CHARACTERS
================================ */

.characters {
    padding: 130px 0;
}


.characters .section-heading p {
    color: var(--text-muted);

    margin-top: 15px;
}


.characters-grid {
    display: grid;

    grid-template-columns: repeat(6, 1fr);

    gap: 18px;
}


.character {
    text-align: center;
}


.character__image {
    height: 190px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 22px;

    background:
        radial-gradient(
            circle,
            #293529,
            #141b14
        );

    border: 1px solid var(--border);

    font-size: 80px;

    transition:
        transform .25s ease,
        background .25s ease;
}


.character:hover .character__image {
    transform: translateY(-7px);

    background:
        radial-gradient(
            circle,
            #394936,
            #151c15
        );
}


.character h3 {
    margin-top: 18px;

    font-size: 17px;
}


.character span {
    display: block;

    margin-top: 4px;

    color: var(--text-muted);

    font-size: 12px;
}


/* ================================
   CTA
================================ */

.cta {
    padding: 0 0 130px;
}


.cta__box {
    min-height: 360px;

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    padding: 70px;

    border-radius: var(--radius);

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(196, 119, 50, .25),
            transparent 35%
        ),
        #171f17;
}


.cta__content {
    position: relative;
    z-index: 2;
}


.cta h2 {
    font-size: clamp(40px, 5vw, 62px);

    line-height: 1;

    letter-spacing: -.06em;
}


.cta p {
    max-width: 540px;

    margin-top: 20px;

    color: var(--text-muted);

    font-size: 17px;
}


.cta__buttons {
    display: flex;

    gap: 12px;

    margin-top: 30px;
}


.cta__rabbit {
    position: absolute;

    right: 90px;
    bottom: -25px;

    font-size: 250px;

    opacity: .9;

    transform: rotate(-5deg);
}


/* ================================
   FOOTER
================================ */

.footer {
    padding: 45px 0;

    border-top: 1px solid var(--border);

    background: #080b08;
}


.footer__inner {
    display: flex;

    align-items: center;
    justify-content: space-between;
}


.footer p {
    margin-top: 10px;

    color: var(--text-muted);

    font-size: 12px;
}


.footer__links {
    display: flex;

    gap: 30px;

    color: var(--text-muted);

    font-size: 13px;
}


.footer__links a:hover {
    color: var(--text);
}


/* ================================
   MOBILE
================================ */

@media (max-width: 1000px) {

    .container {
        width: min(100% - 40px, 700px);
    }


    .nav {
        display: none;
    }


    .hero__inner {
        grid-template-columns: 1fr;

        min-height: auto;

        padding-top: 150px;
        padding-bottom: 70px;
    }


    .hero__visual {
        height: 450px;

        margin-top: 30px;
    }


    .moon {
        right: 50px;
    }


    .rabbit {
        right: 100px;
    }


    .content-grid {
        grid-template-columns: 1fr;
    }


    .characters-grid {
        grid-template-columns: repeat(3, 1fr);
    }


    .release-card {
        grid-template-columns: 1fr;
    }


    .release-card__content {
        padding: 45px;
    }

}


@media (max-width: 600px) {

    .container {
        width: calc(100% - 30px);
    }


    .header {
        padding: 20px 0;
    }


    .header__button {
        display: none;
    }


    .hero {
        min-height: auto;
    }


    .hero__inner {
        padding-top: 120px;
    }


    .hero h1 {
        font-size: 54px;
    }


    .hero__description {
        font-size: 16px;
    }


    .hero__actions {
        flex-direction: column;

        align-items: stretch;
    }


    .hero__visual {
        height: 360px;
    }


    .moon {
        width: 180px;
        height: 180px;

        top: 20px;
        right: 30px;
    }


    .rabbit {
        right: 65px;
        bottom: 30px;

        transform: scale(.8);
    }


    .hero__label {
        right: 0;
        bottom: 10px;

        width: 160px;
    }


    .release,
    .content,
    .characters {
        padding: 80px 0;
    }


    .release-card__visual {
        min-height: 300px;
    }


    .release-card__content {
        padding: 30px;
    }


    .release-card h2 {
        font-size: 48px;
    }


    .release-card__buttons {
        flex-direction: column;
    }


    .characters-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .character__image {
        height: 150px;

        font-size: 60px;
    }


    .cta__box {
        padding: 40px 30px;

        min-height: 430px;
    }


    .cta__rabbit {
        right: 10px;

        font-size: 170px;
    }


    .cta__buttons {
        flex-direction: column;

        align-items: flex-start;
    }


    .footer__inner {
        flex-direction: column;

        align-items: flex-start;

        gap: 30px;
    }

}

/* ================================
   MUSIC
================================ */

.music-page {
    min-height: 100vh;
    padding: 150px 0 100px;
}


.music-header {
    margin-bottom: 55px;
}


.music-header h1 {
    font-size: clamp(48px, 6vw, 76px);
    line-height: .95;
    letter-spacing: -.06em;
}


.music-header h1 span {
    color: var(--accent-light);
}


.music-header p {
    max-width: 600px;
    margin-top: 25px;

    color: var(--text-muted);

    font-size: 18px;
}


.tracks {
    display: flex;
    flex-direction: column;
    gap: 12px;
}


.track {
    display: grid;

    grid-template-columns: 60px 100px 1fr 320px;

    align-items: center;

    gap: 20px;

    padding: 20px 24px;

    background: var(--card);

    border: 1px solid var(--border);

    border-radius: 18px;

    transition:
        transform .2s ease,
        border-color .2s ease;
}


.track:hover {
    border-color: rgba(223, 148, 73, .35);

    transform: translateX(3px);
}


.track__number {
    color: var(--text-muted);

    font-size: 14px;
    font-weight: 600;
}


.track__info h2 {
    font-size: 18px;

    line-height: 1.2;

    text-transform: capitalize;
}


.track__info p {
    margin-top: 5px;

    color: var(--text-muted);

    font-size: 13px;
}


.track__player {
    width: 100%;
}


.track__player audio {
    display: block;

    width: 100%;

    height: 38px;
}


@media (max-width: 800px) {

    .track {
        grid-template-columns: 40px 1fr;
    }


    .track__player {
        grid-column: 1 / -1;
    }

}

.track__cover {
	width: 100px;
	height: 100px;
	border: 1px solid var(--border);
	background-size: cover;
}