/* ==========================================================================
   Home Hero
   ========================================================================== */

.home-hero {
    background:
        radial-gradient(circle at 18% 18%, rgba(35, 130, 171, 0.16) 0%, rgba(35, 130, 171, 0) 24%),
        radial-gradient(circle at 82% 12%, rgba(96, 129, 146, 0.18) 0%, rgba(96, 129, 146, 0) 20%),
        linear-gradient(180deg, #0b1922 0%, #162d3f 62%, #0b1922 100%);
}

.home-hero__container {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 24px;
    align-items: center;
    min-height: auto;
}

.home-hero__gallery {
    display: grid;
    gap: 0;
    align-items: stretch;
    width: 100%;
    height: 100%;
}

.home-hero__gallery--1 {
    grid-template-columns: 1fr;
}

.home-hero__gallery--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-hero__gallery--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-hero__panel {
    position: relative;
    isolation: isolate;
    min-height: 100%;
}

.home-hero__panel::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 22%);
    transform: translateX(-120%);
    transition: transform 0.9s ease;
}

.home-hero__panel-shell {
    position: relative;
    display: grid;
    gap: 0;
    height: 100%;
    padding: 0;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(9, 17, 24, 0.72) 0%, rgba(9, 17, 24, 0.88) 100%);
    transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}

.home-hero__panel-media {
    position: relative;
    display: flex;
    justify-content: center;
    height: 100%;
    padding: 20px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(12, 20, 28, 0.54) 0%, rgba(12, 20, 28, 0.86) 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.home-hero__panel-aura {
    position: absolute;
    inset: -8%;
    opacity: 0.7;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: blur(26px) saturate(1.08);
    transform: scale(1.15);
}

.home-hero__panel-cover-wrap {
    position: absolute;
    bottom: -25%;
    width: min(100%, 320px);
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 16, 22, 0.22);
    box-shadow:
        0 26px 60px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    transition: bottom 0.45s ease;
}

.home-hero__panel:hover .home-hero__panel-cover-wrap {
    bottom: -20%;
}

.home-hero__panel-cover {
    position: relative;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: saturate(1.02) contrast(1.02);
}

.home-hero__panel-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0 0 320px;
    color: #fff;
    text-align: center;
}

.home-hero__panel-subtitle,
.home-hero__panel-release {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.home-hero__panel h2 {
    margin: 0;
    color: #fff;
    font-family: var(--font-title);
    font-size: clamp(24px, 2.8vw, 38px);
    line-height: 1.1;
    letter-spacing: 0.02em;
}

.home-hero__panel-accent {
    color: var(--color-primary);
    font-weight: 700;
}

.home-hero__panel-summary {
    max-width: 80%;
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
}

.home-hero__panel-release {
    color: rgba(255, 255, 255, 0.7);
}

.home-hero__panel-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin-top: 4px;
    padding: 10px 16px;
    border-radius: 4px;
    background: var(--color-link);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 14px 32px rgba(125, 16, 32, 0.3);
}

.home-hero__panel-cta::after {
    content: ">";
    font-size: 16px;
    line-height: 1;
}


/* ==========================================================================
   Home Intro
   ========================================================================== */

.home-intro {
    position: relative;
    padding: 42px 160px 42px 42px;
    background: #fff;
}

.home-intro::after {
    content: "";
    position: absolute;
    inset: 0 0 0 auto;
    width: 140px;
    opacity: 0.92;
    background-image: url("../../media/kakemono/kakemono-sabres-sacres-tigre.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.home-intro__inner {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    text-align: left;
}

.home-intro__inner::before {
    display: none;
}

.home-intro h1 {
    margin: 0 0 18px;
    color: var(--color-grey-4);
    font-family: var(--font-heading);
    font-size: 40px;
    line-height: 1.08;
}

.home-intro p:last-child {
    margin: 0;
    color: var(--color-grey-2);
}


/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 980px) {
    .home-hero__gallery--2,
    .home-hero__gallery--3 {
        grid-template-columns: 1fr;
    }

    .home-hero__panel-media {
        min-height: 360px;
    }

    .home-hero__panel-cover-wrap {
        width: min(100%, 260px);
    }

    .home-intro {
        position: relative;
        padding: 42px 0.75rem;
        background: #fff;

        &:after {
            content: none;
        }
    }
}

@media (max-width: 991px) {
    .home-hero__panel-content {
        padding: 0 0 260px;
    }
}

@media (max-width: 767px) {
    .home-intro h1 {
        max-width: none;
        font-size: 28px;
        line-height: 36px;
    }

    .home-hero__panel,
    .home-hero__panel:not(:last-child) {
        min-height: 58vh;
    }

    .home-hero__center-actions .btn {
        width: 100%;
    }

    .quote-band blockquote {
        font-size: 24px;
    }
}
