@charset "utf-8";

/* INDEX 페이지일 때 container 전폭 사용 */
#container {
    max-width: none;
    padding: 0;
    margin: 0;
}

#container_title {
    display: none;
}

#skip_to_container {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    clip: rect(0, 0, 0, 0);
}

/* ===== Hero Section ===== */
.main-hero {
    position: relative;
    width: 100%;
    height: 1000px;
    overflow: hidden;
    background: #1a1a1a;
}

.main-hero .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== Section Common ===== */
.main-section {
    width: 100%;
}

/* ===== Section: What We Do ===== */
.section-whatwedo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 120px 20px;
    text-align: center;
    background: var(--color-white);
}

.section-whatwedo .icon-logo {
    width: 80px;
    height: 51px;
    object-fit: contain;
}

.section-whatwedo .text-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.section-whatwedo .section-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-gray);
    line-height: 1.4;
    letter-spacing: -0.36px;
    margin: 0;
}

.section-whatwedo .section-title {
    font-size: 40px;
    font-weight: 500;
    color: var(--color-dark);
    line-height: 1.4;
    letter-spacing: -0.8px;
    margin: 0;
}

.section-whatwedo .section-title strong {
    font-weight: 700;
}

/* ===== Section: Our Works ===== */
.section-works {
    background: var(--color-black);
    padding: 120px var(--side-padding);
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.section-works .section-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: var(--content-max);
    margin: 0 auto;
}

.section-works .section-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.4;
    letter-spacing: -0.8px;
    text-transform: uppercase;
    margin: 0;
}

.section-works .works-slider-wrap {
    position: relative;
    width: 100%;
    max-width: var(--content-max);
    margin: 0 auto;
}
/* .section-works .works-swiper .swiper-wrapper {
    gap: 40px;
    justify-content: center;
} */

.swiper .swiper-button-next,
.swiper .swiper-button-prev{
    border-radius: 50%;
    display: flex;
    width: 52px;
    height: 52px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.60);
}
.swiper.works-swiper{
    padding: 60px 0;
}
.section-works .swiper-slide {
    width: 420px;
    height: 593px;
    overflow: hidden;
    opacity: 0.6;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.section-works .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.works-swiper:not(.swiper-initialized) .swiper-wrapper{
    gap: 0 40px;
    justify-content: center;
}
.works-swiper .swiper-wrapper{
    align-items: center;
}

.works-swiper:not(.active) .swiper-button-prev,
.works-swiper:not(.active) .swiper-button-next{
    opacity: 0.2;
    cursor: auto;
}
.works-swiper .swiper-slide.swiper-slide-active{
    transform: scale(1.15);
}
.section-works .swiper-slide-active {
    opacity: 1;
    z-index: 1;
} 

/* ===== Section: Clients ===== */
.section-clients {
    background: #f8f8f8;
    padding: 120px 27px;
}

.section-clients .clients-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    width: 100%;
    max-width: var(--content-max);
    margin: 0 auto;
}

.section-clients .section-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.section-clients .section-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.4;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: -0.5px;
}

.section-clients .clients-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    justify-content: center;
}

.section-clients .client-logo-box {
    background: var(--color-white);
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    width: 223px;
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 10px;
}

.section-clients .client-logo-box:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.section-clients .client-logo-box img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* ===== Section: Contact ===== */
.section-contact {
    background: var(--color-light-bg);
    padding: 120px var(--side-padding);
}

.section-contact .contact-inner {
    width: 100%;
    max-width: var(--content-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-contact .contact-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.section-contact .contact-text h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.4;
    text-transform: uppercase;
    margin: 0;
}

.section-contact .contact-text p {
    font-size: 20px;
    font-weight: 500;
    color: var(--color-gray);
    line-height: 1.4;
    letter-spacing: -0.4px;
    margin: 0;
}

.section-contact .contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: var(--color-black);
    color: var(--color-white);
    border: none;
    border-radius: 500px;
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-main);
    line-height: 1.4;
    letter-spacing: -0.36px;
    cursor: pointer;
    text-decoration: none;
    flex-shrink: 0;
    transition: background 0.2s;
}

.section-contact .contact-btn:hover {
    background: #222;
}

.section-contact .contact-btn svg {
    width: 18px;
    height: 15px;
    fill: var(--color-white);
}

/* ===== Responsive ===== */
/* ===== Responsive ===== */
@media (max-width: 1280px) {
    .section-whatwedo .section-title {
        font-size: 32px;
    }

    .section-works .swiper-slide {
        width: 280px;
        height: 450px;
    }

    .section-works .swiper-slide-active {
        width: 400px;
        height: 560px;
    }

    .section-contact {
        flex-direction: column;
        gap: 40px;
        align-items: flex-start;
    }

    .section-clients .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .section-clients .client-logo-box {
        padding: 25px 15px;
        min-height: 90px;
    }
}

@media (max-width: 960px) {
    .main-hero {
        height: 600px;
    }

    .section-whatwedo {
        padding: 80px 20px;
    }

    .section-whatwedo .section-title {
        font-size: 28px;
    }

    .section-works {
        padding: 80px 30px;
    }

    .section-works .works-swiper {
        overflow: hidden;
    }

    .section-works .swiper-slide {
        width: 100%;
        height: 450px;
        opacity: 1;
    }

    .section-works .swiper-slide-active {
        width: 100%;
        height: 450px;
    }

    .section-clients {
        padding: 80px 20px;
    }

    .section-clients .section-header h2 {
        font-size: 32px;
    }

    .section-clients .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .section-clients .client-logo-box {
        padding: 20px 10px;
        min-height: 80px;
    }

    .section-clients .client-logo-box img {
        max-height: 50px;
    }

    .section-contact {
        padding: 80px 30px;
    }
}
