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

html {
    scroll-behavior: smooth;
}

body {
    background: #000000;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ── Fixed Vertical Divider ── */

.vertical-divider {
    position: fixed;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.15);
    z-index: 100;
    pointer-events: none;
    transform: scaleY(0);
    transform-origin: top center;
    transition: transform 1.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.vertical-divider.visible {
    transform: scaleY(1);
}

/* ── Cover Section (0-100vh) ── */

.cover {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.issue-label {
    position: absolute;
    top: 40px;
    right: 48px;
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
    font-size: 11px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #666666;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 1s ease 0.6s, transform 1s ease 0.6s;
}

.issue-label.visible {
    opacity: 1;
    transform: translateY(0);
}

.cover-brand-wrapper {
    position: relative;
    overflow: hidden;
}

.cover-brand {
    font-family: 'Cormorant', serif;
    font-weight: 300;
    font-size: clamp(60px, 10vw, 120px);
    letter-spacing: 0.3em;
    text-transform: lowercase;
    color: #ffffff;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.4s cubic-bezier(0.19, 1, 0.22, 1) 0.3s, transform 1.4s cubic-bezier(0.19, 1, 0.22, 1) 0.3s;
}

.cover-brand.visible {
    opacity: 1;
    transform: translateY(0);
}

.cover-tagline {
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
    font-size: 11px;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: #a3a3a3;
    margin-top: 32px;
    opacity: 0;
    transition: opacity 1.2s ease 1s;
}

.cover-tagline.visible {
    opacity: 1;
}

.cover-year {
    position: absolute;
    bottom: 40px;
    left: 48px;
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
    font-size: 11px;
    letter-spacing: 0.35em;
    color: #666666;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 1s ease 0.8s, transform 1s ease 0.8s;
}

.cover-year.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Editorial Section (100-300vh) ── */

.editorial {
    position: relative;
    padding: 120px 0;
}

.entry {
    position: relative;
    padding: 80px 48px;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.9s cubic-bezier(0.19, 1, 0.22, 1), transform 0.9s cubic-bezier(0.19, 1, 0.22, 1);
}

.entry.visible {
    opacity: 1;
    transform: translateY(0);
}

.entry-num {
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
    font-size: 11px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #666666;
    display: block;
    margin-bottom: 24px;
}

.entry-num.num-right {
    text-align: right;
}

.entry-body {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 5%;
}

.entry-body.body-reverse {
    flex-direction: row-reverse;
}

.entry-title {
    font-family: 'Cormorant', serif;
    font-weight: 300;
    font-size: clamp(48px, 7vw, 90px);
    letter-spacing: 0.15em;
    line-height: 1.05;
    color: #ffffff;
    flex: 1;
}

.entry-title.title-right {
    text-align: right;
}

.color-block {
    width: 280px;
    height: 200px;
    flex-shrink: 0;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.color-block:hover {
    transform: scale(1.03);
}

.block-red {
    background: #e11d48;
}

.block-dark {
    background: #1a1a1a;
}

.block-tall {
    height: 300px;
}

.block-wide {
    width: 360px;
}

.entry-caption {
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
    font-size: 10px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #666666;
    display: block;
    margin-top: 40px;
    padding: 0 5%;
}

.caption-left {
    text-align: left;
}

.caption-right {
    text-align: right;
}

.entry-rule {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin-top: 80px;
}

/* ── Feature Section (300-370vh) ── */

.feature {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.feature-text {
    font-family: 'Cormorant', serif;
    font-weight: 300;
    font-size: clamp(60px, 12vw, 160px);
    letter-spacing: 0.25em;
    color: #ffffff;
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 1.4s cubic-bezier(0.19, 1, 0.22, 1), transform 1.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.feature-text.visible {
    opacity: 1;
    transform: scale(1);
}

/* ── Index Strip (370vh+) ── */

.index-strip {
    position: relative;
    padding: 100px 48px 60px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
}

.index-strip.visible {
    opacity: 1;
    transform: translateY(0);
}

.index-entries {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.index-item {
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
    font-size: 12px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #a3a3a3;
    transition: color 0.3s ease;
    cursor: default;
}

.index-item:hover {
    color: #ffffff;
}

.index-number {
    color: #e11d48;
    margin-right: 16px;
}

.index-rule {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 48px 0 24px;
}

.index-brand {
    font-family: 'Cormorant', serif;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 0.4em;
    color: #666666;
    display: block;
}

/* ── Responsive ── */

@media (max-width: 768px) {
    .cover-brand {
        font-size: clamp(36px, 10vw, 60px);
        letter-spacing: 0.2em;
    }

    .entry {
        padding: 60px 24px;
    }

    .entry-body {
        flex-direction: column;
        gap: 30px;
        padding: 0;
    }

    .entry-body.body-reverse {
        flex-direction: column;
    }

    .entry-title {
        font-size: clamp(36px, 10vw, 56px);
    }

    .entry-title.title-right {
        text-align: left;
    }

    .color-block {
        width: 100%;
        height: 160px;
    }

    .block-wide {
        width: 100%;
    }

    .block-tall {
        height: 200px;
    }

    .entry-caption {
        padding: 0;
    }

    .feature-text {
        font-size: clamp(40px, 10vw, 80px);
        letter-spacing: 0.15em;
    }

    .issue-label {
        top: 24px;
        right: 24px;
    }

    .cover-year {
        bottom: 24px;
        left: 24px;
    }

    .index-strip {
        padding: 80px 24px 40px;
    }

    .vertical-divider {
        opacity: 0.5;
    }
}
