* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body > main {
    padding-bottom: 0;
}

.campaign-poetic-project {
    position: relative;
    width: 100%;
    color: #fff;
    font-family: 'FuturaLTPro', 'Noto Sans KR', 'Noto Sans JP', sans-serif !important;
}

.scroll-down-wrap {
    position: fixed;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
    transition: filter 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
}

.scroll-down-wrap.invert {
    filter: invert(1);
}

.campaign-poetic-project .scroll-down-wrap .scroll-down-text {
    color: #fff;
    font-weight: 400;
    font-size: 11px;
    line-height: 16px;
    letter-spacing: 0.02em;
    margin-top: 10px;
    margin-bottom: 20px;
}

.campaign-poetic-project .scroll-hint-track {
    position: relative;
    width: 1px;
    height: 20px;
    margin: 0 auto;
    flex-shrink: 0;
    background: transparent;
}

.campaign-poetic-project .scroll-hint-track::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 80%;
    background: rgba(255, 255, 255, 0.28);
    pointer-events: none;
}

.campaign-poetic-project .scroll-hint-track-bar {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 8px;
    background: #ffffff;
    animation: poetic-scroll-hint-line 3s ease-in-out infinite;
}

@keyframes poetic-scroll-hint-line {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .campaign-poetic-project .scroll-hint-track-bar {
        animation: none;
    }
}

.section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
}

.video-wrap {
    width: 100%;
    height: 100%;
}

.video-wrap .video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-wrap .mo-video {
    display: none;
}

.video-wrap .pc-video {
    display: block;
}

.poetic-intro {
    position: relative;
    width: 100%;
    background: #fff;
    color: #111;
    text-align: center;
    padding: 80px 24px 80px;
}

.poetic-intro.poetic-intro--reveal .poetic-intro-title,
.poetic-intro.poetic-intro--reveal .poetic-intro-body {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.75s ease-out, transform 0.75s ease-out;
    will-change: opacity, transform;
}

.poetic-intro.poetic-intro--reveal .poetic-intro-body {
    transition-delay: 0.1s;
}

.poetic-intro.poetic-intro--reveal.is-visible .poetic-intro-title,
.poetic-intro.poetic-intro--reveal.is-visible .poetic-intro-body {
    opacity: 1;
    transform: translateY(0);
    will-change: auto;
}
.poetic-intro-body .mg{margin-bottom : 60px;}

@media (prefers-reduced-motion: reduce) {
    .poetic-intro.poetic-intro--reveal .poetic-intro-title,
    .poetic-intro.poetic-intro--reveal .poetic-intro-body {
        opacity: 1;
        transform: none;
        transition: none;
        will-change: auto;
    }
}

.poetic-intro-title {
    font-weight: 400;
    font-size: 13px;
    line-height: 1.6;
    letter-spacing: 0.02em;
    margin: 0 auto 2.5rem;
    max-width: 440px;
    text-align: center;
}

.poetic-intro-body {
    max-width: 440px;
    margin: 0 auto;
}

.poetic-intro-p {
    font-weight: 400;
    font-size: 11px;
    line-height: 1.85;
    margin: 0 0 1.75rem;
    word-break: keep-all;
}

.poetic-intro-p-pc {
    display: block;
}

.poetic-intro-p-mo {
    display: none;
}

.poetic-intro-p:last-child {
    margin-bottom: 0;
}

.poetic-gallery {
    position: relative;
    width: 100%;
    background: #fff;
    padding: 0 0 80px;
}

.poetic-gallery-inner {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 48px;
}

.poetic-gallery-stack {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.poetic-gallery-cta {
    padding-top: 120px;
    text-align: center;
}

.poetic-gallery-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35em;
    color: #111;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: 0.01em;
    text-decoration: none;
}

.poetic-gallery-link:hover,
.poetic-gallery-link:focus-visible {
    text-decoration: none;
    opacity: 0.75;
}

.poetic-gallery-link-chevron {
    font-weight: 400;
    line-height: 1;
}

.poetic-gallery-item {
    margin: 0;
    padding: 0;
}

.poetic-gallery-item img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

@media (max-width: 768px) {
    .video-wrap .pc-video {
        display: none;
    }

    .video-wrap .mo-video {
        display: block;
    }

    body > main.campaign-poetic-project {
        overflow: visible;
    }

    .scroll-down-wrap {
        bottom: 20px;
    }

    .section {
        height: 100vh;
    }

    .poetic-intro {
        padding: 80px 20px 80px;
    }

    .poetic-gallery {
        padding-bottom: 80px;
    }

    .poetic-gallery-inner {
        max-width: none;
        padding: 0;
    }

    .poetic-intro-p-pc {
        display: none;
    }

    .poetic-intro-p-mo {
        display: block;
    }

    .poetic-gallery-cta {
        padding-top: 60px;
    }
    .poetic-gallery-link{
        font-size: 15px;
    }
    .mg{margin-bottom : 40px;}
}
