/* =========================================================
   June & Aurora — 首页首屏 Banner
   只包含女孩、巨型标题、花朵、杂志信息、首屏文案与统计栏
   依赖：june-aurora-common.css
   ========================================================= */

/* =========================================================
   01. 基础样式
   ========================================================= */

.cover-hero {
    position: relative;
    min-height: 900px;
    padding: 30px 42px 0;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) 72px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    isolation: isolate;
}

.cover-meta {
    position: relative;
    z-index: 20;
    padding: 15px 0 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cover-meta-left {
    justify-content: flex-start;
}

.cover-meta-right {
    justify-content: flex-end;
}

.cover-issue {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.cover-meta-left strong {
    margin-top: 3px;
    font-family: var(--cover-display);
    font-size: 35px;
    font-weight: 400;
    line-height: 1;
}

.cover-vertical-line {
    width: 1px;
    height: 120px;
    margin: 20px 0;
    background: var(--black);
}

.cover-vertical-text {
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.cover-volume {
    position: absolute;
    right: 18px;
    bottom: 64px;
    z-index: 30;
    margin: 0;
    padding: 10px 12px;
    color: var(--black);
    background: rgba(245, 240, 231, 0.72);
    font-family: var(--cover-display);
    font-size: 21px;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    backdrop-filter: blur(3px);
}

.cover-center {
    position: relative;
    min-height: 870px;
    overflow: hidden;
}

.cover-kicker {
    position: absolute;
    top: 16px;
    left: 50%;
    z-index: 20;
    transform: translateX(-50%);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    white-space: nowrap;
}

/* =========================================================
   背景大字：慢速轻微浮动
   与人物分层，制造更明显的前后景深
   ========================================================= */

/* =========================================================
   背景大字外层
   JS 只控制滚动视差
   ========================================================= */

.cover-word {
    --parallax-y: 0px;

    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: visible;

    transform: translate3d(
        0,
        var(--parallax-y),
        0
    );

    pointer-events: none;
    user-select: none;
    will-change: transform;
}

/* =========================================================
   背景大字内层
   CSS 负责缓慢上下漂浮
   ========================================================= */

.cover-word-inner {
    position: absolute;
    inset: 0;

    animation:
        cover-word-float
        10s
        ease-in-out
        infinite;

    will-change: transform;
}

@keyframes cover-word-float {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -16px, 0);
    }
}



/* 大字移动得比花更慢、幅度更小 */

@keyframes cover-word-float {
    0%,
    100% {
        --word-float-y: 0px;
    }

    50% {
        --word-float-y: -14px;
    }
}

.word-june,
.word-aurora {
    position: absolute;
    color: var(--black);
    font-family: var(--cover-display);
    font-weight: 400;
    line-height: 0.74;
    letter-spacing: -0.045em;
    text-transform: uppercase;
    white-space: nowrap;
}

.word-june {
    top: 65px;
    left: 1%;
    font-size: clamp(190px, 19vw, 330px);
}

.word-aurora {
    top: 305px;
    left: 15%;
    font-size: clamp(185px, 18vw, 315px);
}

.word-and {
    position: absolute;
    top: 188px;
    left: 34.5%;
    z-index: 5;
    color: var(--orange);
    font-family: var(--serif);
    font-size: clamp(88px, 7vw, 118px);
    font-style: italic;
    line-height: 1;
}

/* =========================================================
   人物前景层
   向页面中央移动，并覆盖部分 AURORA
   ========================================================= */

.cover-person {
    --person-x: -50%;
    --parallax-y: 0px;

    position: absolute;
    left: 46%;
    bottom: 0;
    z-index: 7;

    width: min(720px, 52vw);
    height: 840px;

    transform: translate3d(
        var(--person-x),
        var(--parallax-y),
        0
    );

    pointer-events: none;
    will-change: transform;
}

.cover-person img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: contain;
    object-position: center bottom;

    filter:
        contrast(1.03)
        saturate(0.96);
}


.cover-flower {
    position: absolute;
    z-index: 8;
    height: auto;
    max-width: none;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
    animation: home-flower-float 6s ease-in-out infinite;
    will-change: transform;
}

.flower-1 {
    top: 260px;
    left: 2%;
    width: 250px;
    animation-duration: 6.2s;
}

.flower-2 {
    top: 170px;
    right: 3%;
    width: 180px;
    animation-delay: -1.4s;
    animation-duration: 5.4s;
}

.flower-3 {
    right: -20px;
    bottom: -70px;
    z-index: 10;
    width: 430px;
    opacity: 0.84;
    filter: blur(2px);
    animation-delay: -2.2s;
    animation-duration: 7.2s;
}

.flower-4 {
    left: 25%;
    bottom: 125px;
    z-index: 9;
    width: 105px;
    animation-delay: -0.7s;
    animation-duration: 4.8s;
}

.cover-bottom-copy {
    position: absolute;
    left: 4%;
    bottom: 55px;
    z-index: 12;
    max-width: 320px;
}

.cover-bottom-copy > span {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.cover-bottom-copy h1 {
    margin: 13px 0 12px;
    font-family: var(--serif);
    font-size: clamp(31px, 3vw, 52px);
    font-weight: 500;
    line-height: 0.95;
}

.cover-bottom-copy h1 em {
    color: var(--orange);
    }

.cover-bottom-copy p {
    max-width: 260px;
    margin: 0;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.55;
}

/* =========================================================
   02. 首页统计栏
   ========================================================= */

.cover-hero + .hero-stats {
    position: relative;
    z-index: 20;
    margin-top: -1px;
}

.hero-stats {
    padding: 24px 38px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(255,253,248,.72);
    border: 1px solid var(--line);
    border-radius: 12px;
}

.stat-item {
    min-height: 75px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    gap: 17px;
    border-right: 1px solid var(--line);
}

.stat-item:last-child {
    border-right: 0;
}

.stat-icon {
    color: var(--orange);
    font-family: var(--serif);
    font-size: 34px;
}

.stat-item strong,
.stat-item small {
    display: block;
}

.stat-item strong {
    font-family: var(--serif);
    font-size: 24px;
}

.stat-item small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 9px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

/* =========================================================
   03. Banner 花朵动画
   ========================================================= */

@keyframes home-flower-float {

    0%,
    100% {
        transform: translateY(0) rotate(-1deg);
    }

    50% {
        transform: translateY(-18px) rotate(1.5deg);
    }

}

/* =========================================================
   04. Desktop 1500+
   ========================================================= */

@media (min-width:1500px){

    .cover-hero{
        min-height:970px;
        grid-template-columns:82px minmax(0,1fr) 82px;
    }

    .cover-center{
        min-height:940px;
    }

    .word-june {
        top: 55px;
        left: 0;
        font-size: 330px;
    }

    .word-aurora {
        top: 315px;
        left: 13%;
        font-size: 315px;
    }

    .word-and {
        top: 190px;
        left: 34%;
        font-size: 122px;
    }

    .cover-person {
        left: 46%;
        width: 750px;
        height: 910px;
    }


    .flower-1{
        top:275px;
        left:1%;
        width:285px;
    }

    .flower-2{
        top:190px;
        right:2%;
        width:205px;
    }

    .flower-3{
        right:-10px;
        bottom:-65px;
        width:460px;
    }

    .flower-4{
        left:25%;
        bottom:140px;
        width:115px;
    }

    .cover-bottom-copy{
        left:4%;
        bottom:75px;
    }

    .cover-volume{
        right:24px;
        bottom:72px;
    }

}

/* =========================================================
   05. Tablet
   ========================================================= */

@media (max-width:1100px){

    .cover-hero{
        min-height:840px;
        padding-inline:20px;
        grid-template-columns:50px minmax(0,1fr) 50px;
    }

    .cover-center{
        min-height:810px;
    }

    .word-june{
        top:80px;
        left:0;
        font-size:clamp(175px,25vw,260px);
    }

    .word-aurora{
        top:285px;
        left:8%;
        font-size:clamp(165px,24vw,245px);
    }

    .word-and{
        top:165px;
        left:36%;
        font-size:94px;
    }

    .cover-person{
        width:min(610px,70vw);
        height:760px;
    }

    .flower-1{
        left:-35px;
        width:205px;
    }

    .flower-2{
        right:-20px;
        width:150px;
    }

    .flower-3{
        right:-65px;
        bottom:-45px;
        width:350px;
    }

    .flower-4{
        left:20%;
        width:90px;
    }

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

    .stat-item:nth-child(2){
        border-right:0;
    }

    .stat-item:nth-child(-n+2){
        border-bottom:1px solid var(--line);
    }

}
/* =========================================================
   06. Mobile
   ========================================================= */

@media (max-width: 760px) {
    .cover-hero {
        min-height: 700px;
        padding: 18px 0 0;
        display: block;
    }

    .cover-meta {
        display: none;
    }

    .cover-center {
        min-height: 680px;
    }

    .cover-kicker {
        top: 8px;
        font-size: 7px;
        letter-spacing: 0.15em;
    }

    .word-june {
        top: 62px;
        left: 0;
        font-size: clamp(115px, 35vw, 165px);
    }

    .word-aurora {
        top: 195px;
        left: 4%;
        font-size: clamp(105px, 32vw, 150px);
    }

    .word-and {
        top: 115px;
        left: 39%;
        font-size: 62px;
    }

    .cover-person {
        width: 108%;
        height: 620px;
        bottom: -4px;
    }

    .cover-bottom-copy {
        left: 18px;
        bottom: 24px;
        max-width: 210px;
    }

    .cover-bottom-copy h1 {
        font-size: 30px;
    }

    .cover-bottom-copy p {
        max-width: 185px;
        font-size: 8px;
    }

    .flower-1 {
        top: 310px;
        left: -48px;
        width: 135px;
    }

    .flower-2 {
        top: 245px;
        right: -35px;
        width: 105px;
    }

    .flower-3 {
        right: -55px;
        bottom: -35px;
        width: 185px;
        filter: blur(2px);
    }

    .flower-4 {
        left: 19%;
        bottom: 80px;
        width: 72px;
    }

    .hero-stats {
        padding: 18px;
        grid-template-columns: 1fr;
    }

    .stat-item {
        padding: 18px 5px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .stat-item:last-child {
        border-bottom: 0;
    }
}

/* =========================================================
   07. Small phones
   ========================================================= */

@media (max-width: 430px) {
    .cover-hero {
        min-height: 640px;
    }

    .cover-center {
        min-height: 620px;
    }

    .word-june {
        top: 60px;
        font-size: 118px;
    }

    .word-aurora {
        top: 175px;
        font-size: 105px;
    }

    .word-and {
        top: 105px;
        left: 42%;
        font-size: 54px;
    }

    .cover-person {
        width: 120%;
        height: 565px;
    }

    .cover-bottom-copy {
        bottom: 17px;
    }

    .cover-bottom-copy h1 {
        font-size: 27px;
    }
}

/* =========================================================
   08. Reduced motion
   ========================================================= */



@media (prefers-reduced-motion: reduce) {
    .cover-word-inner {
        animation: none !important;
        transform: none !important;
    }
}