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

.campaign-2026ss {
    position: relative;
    width: 100%;
    background: #000;
    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);
}

.scroll-down-wrap.near-footer {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.scroll-down-wrap .scroll-down-text {
    color: #fff;
    font-weight: 400;
    font-size: 11px;
    line-height: 16px;
    margin-top: 12px;
    margin-bottom: 20px;
}

.scroll-hint-bar {
    width: 8px;
    height: 15px;
    position: relative;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.scroll-hint-bar::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 15px;
    background: #fff;
    opacity: 0.8;
}

.scroll-hint-dot {
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 4px;
    margin-left: -2px;
    background: #fff;
    border-radius: 50%;
    animation: scroll-hint-bounce 3s ease-in-out infinite;
}

@keyframes scroll-hint-bounce {
    0%, 100% { top: 0; }
    50% { top: 8px; }
}

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

/* 텍스트+이미지 혼합 섹션은 높이 자동, 겹침 방지 */
.section-text-grid,
.section-text,
.section-images,
.section-three-col-intro {
    height: auto;
    min-height: auto;
    overflow: visible;
}

.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;
}

.section-text {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem;
}

.section-text.text-height {
    position: relative;
    overflow: hidden;
}

.text-height-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

.text-height-bg-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-height-bg-video .text-height-bg-pc {
    display: block;
}

.text-height-bg-video .text-height-bg-mo {
    display: none;
}

.section-text.text-height .text-block {
    position: relative;
    z-index: 1;
}

.text-height {
    height: 100vh;
}

.text-block {
    width: 90%;
    max-width: 720px;
    text-align: center;
    color: #fff;
}

.text-block .text-top {
    font-weight: 400;
    font-size: 11px;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.text-block .text-body {
    font-weight: 400;
    font-size: 11px;
    line-height: 1.6;
    color: #fff;
}
.text-body-bot{
    margin-top: 1.5rem;
}
.section-images {
    min-height: auto;
    height: auto;
    padding: 10rem 0 20px 0;
    overflow: visible;
}
.last-video {
    margin-top: 10rem;
}
.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1520px;
    margin: 0 auto;
}

.image-grid-item {
    width: 100%;
    overflow: hidden;
}

.image-grid-item img,
.image-grid-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 히어로 블록: 텍스트 + 이미지 2개. min-height로만 100vh, 내용만큼 늘어나서 다음 섹션과 겹치지 않음 */
.section-hero-wrap {
    min-height: 100vh;
    height: auto;
    display: flex;
    flex-direction: column;
    overflow: visible;
    margin-top: 10rem;
    margin-bottom: 0;
}

.section-hero-wrap .section-text-hero {
    flex: 0 0 auto;
    padding: 2rem;
    margin-bottom: 5rem;
    overflow: visible;
}

.section-hero-wrap .hero-body-mo {
    display: none;
}

.section-hero-wrap .section-images-hero {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem 2rem;
    margin-top: 0;
    overflow: visible;
}

.section-hero-wrap .image-grid-hero {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1520px;
    margin: 0 auto;
}

.section-hero-wrap .image-grid-hero .image-grid-item {
    transform: none;
}

@media (min-width: 769px) {
    .image-grid:not(.image-grid-hero) .image-grid-item:nth-child(odd) {
        transform: translateY(-40px);
    }
    .image-grid:not(.image-grid-hero) .image-grid-item:nth-child(even) {
        transform: translateY(40px);
    }
}

.section-text-grid {
    min-height: auto;
    height: auto;
    padding: 0;
    margin-top: 10rem;
    overflow: visible;
    display: block;
}

.section-text-grid-copy {
    display: block;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.6;
    color: #fff;
    padding: 3rem 2rem;
    margin: 0 0 6rem 0;
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    word-break: break-word;
}

/* three-col 위 텍스트: section-text-grid-copy와 동일한 여백·디자인, 전용 클래스 */
.section-three-col-intro {
    padding: 0;
    margin-top: 0;
    overflow: visible;
}

.section-three-col-intro-copy {
    display: block;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.6;
    color: #fff;
    padding: 3rem 2rem;
    margin: 6rem 0;
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    word-break: break-word;
}

.full-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 0;
    width: 100%;
}

.full-grid-item {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.full-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
}

.full-grid-zoom {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: #ececec;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.full-grid-zoom.hidden {
    display: none;
}
.full-grid-zoom-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.full-grid-zoom-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}
.full-grid-zoom-close {
    position: fixed;
    top: 35px;
    right: 60px;
    z-index: 10000;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.full-grid-zoom-close img {
    display: block;
    width: 12px;
    height: 12px;
    object-fit: contain;
}

.section-three-col {
    min-height: auto;
    height: auto;
    margin-top: 4rem;
    padding: 0;
    overflow: visible;
}

.three-col-scroll-wrap {
    height: 500vh;
}

.three-col-sticky {
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    height: 100vh;
    height: 100dvh;
    width: 100%;
}

.three-col-layout {
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 100vh;
}

.three-col-text-col {
    width: 28%;
    min-width: 280px;
    padding: 3rem 2rem;
    position: relative;
}

.three-col-title {
    position: absolute;
    top: 3rem;
    left: 2rem;
    right: 2rem;
    font-size: 25px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.02em;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.three-col-title.active {
    opacity: 1;
}

.three-col-images-col {
    flex: 1;
    display: flex;
    gap: 0;
    position: relative;
}

.three-col-pair {
    position: absolute;
    top: 0;
    left: 0;
    padding-top : 30px;
    width: 100%;
    height: 100%;
    display: flex;
    gap: 0;
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
    flex-wrap: wrap;
}

.three-col-pair.active {
    opacity: 1;
    pointer-events: auto;
}

.three-col-img {
    flex: 1;
    overflow: hidden;
}

.three-col-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.bottom_section {
    width: 100vw;
    flex: 0 0 100vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 200px;
}

.bottom_product {
    width: 50%;
    height: 100%;
    position: relative;
}

.bottom_product img,
.bottom_product video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bottom_product a.bottom_txt {
    position: absolute;
    bottom: 50%;
    left: 0;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 25px;
    font-weight: 300;
}

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

    .video-wrap .mo-video {
        display: block;
    }
    .campaign-2026ss .section-three-col-intro{
        height : auto;
    }
    .text-height-bg-video .text-height-bg-pc {
        display: none;
    }

    .text-height-bg-video .text-height-bg-mo {
        display: block;
    }

    body > main.campaign-2026ss {
        overflow: visible;
    }

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

    .section {
        height: 100vh;
    }

    .section-images,
    .section-text-grid {
        height: auto;
        min-height: auto;
    }

    .section-three-col {
        height: auto;
        min-height: auto;
        overflow: visible;
        margin-top: 6rem;
    }

    .three-col-scroll-wrap {
      height : 500dvh;
    }

    .section-hero-wrap .section-text-hero,
    .section-hero-wrap .section-images-hero {
        height: auto;
        min-height: auto;
        padding: 1.5rem 1rem;
    }

    .section-hero-wrap .section-text-hero {
        margin-bottom: 3rem;
    }

    .section-hero-wrap .hero-body-desktop {
        display: none;
    }

    .section-hero-wrap .hero-body-mo {
        display: inline;
    }

    .section-hero-wrap .section-images-hero {
        padding: 3rem 0 2rem 0;
    }
    .text-body-bot{
        word-break: keep-all;
    }
    .section-hero-wrap .image-grid-hero {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-text {
        padding: 1.5rem;
    }

    .text-block .text-top {
        font-size: 11px;
    }

    .text-block .text-body {
        font-size: 11px;
    }

    .section-text-grid {
        margin-top: 2rem;
    }

    .section-text-grid-copy {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }

    .section-three-col-intro-copy {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
        word-break: keep-all;
    }

    .full-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(6, 1fr);
        height: auto;
        min-height: 60vh;
    }

    .three-col-layout {
        flex-direction: column;
    }

    .three-col-text-col {
        width: 100%;
        min-width: 0;
        padding: 4rem 1rem 1.5rem;
        flex-shrink: 0;
        min-height: 4rem;
        position: relative;
    }

    .three-col-title {
        position: absolute;
        top: 3rem;
        left: 0;
        right: 0;
        font-size: 15px;
        text-align: center;
        padding: 0;
        margin: 0;
    }

    .three-col-images-col {
        flex: 1;
        min-height: 0;
        display: flex;
    }

    .three-col-pair {
        flex-direction: column;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #ececec;
    }

    .three-col-img {
        flex: 1;
        min-height: 0;
    }

    .three-col-img img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .bottom_section {
        flex-direction: column;
        padding: 120px 0 0 0;
        min-height: auto;
        margin-top: 100px;
    }

    .bottom_product {
        width: 100%;
    }


    .bottom_product a.bottom_txt {
        font-size: 15px;
    }
    .image-grid{
        grid-template-columns: 1fr;
        gap : 0;
    }
    .full-grid-zoom-close{
        right : 20px;
    }
}
