@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;500;700&display=swap');
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');

@font-face {
    font-family: 'Salonica';
    src: url('/fonts/Salonica.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --main-green: #1b6331;
}

/* ======================================
   BASE
====================================== */
.vision-page {
    font-family: 'Pretendard', 'Jost', sans-serif;
    background: #fff;
    color: #111;
    letter-spacing: -0.02em;
    overflow-x: hidden;
}

/* ======================================
   1. TOP SECTION
====================================== */
.vision-top {
    text-align: center;
    box-sizing: border-box;
}

.top-text {
    font-size: clamp(0.85rem, 1.4vw, 0.95rem);
    color: #555;
    margin-bottom: 0.3rem;
}

.top-en {
    font-family: 'Jost', sans-serif;
    color: var(--main-green);
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* ======================================
   2. HERO SECTION
====================================== */
.vision-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    padding: 0 10%;
    box-sizing: border-box;
}

.vision-hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.vision-content {
    position: relative;
    z-index: 2;
    max-width: 1500px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* MENU */
.vision-menu {
    display: flex;
    justify-content: center;
    gap: clamp(1rem, 3vw, 2rem);
    list-style: none;
    padding: 0;
    margin: 0 0 15rem 0;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: clamp(0.8rem, 1.3vw, 0.9rem);
    letter-spacing: 0.05em;
}

.vision-menu li {
    cursor: default;
    transition: opacity 0.3s ease;
}

.vision-menu li:hover {
    opacity: 0.75;
}

/* MAIN TITLE */
.main-title {
    font-family: 'Jost', sans-serif;
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

/* SUB TITLE */
.sub-title {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    font-weight: 500;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

/* DESCRIPTION */
.desc {
    max-width: 1200px;
    margin: 0 0 4rem 0;
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    color: #fff;
    line-height: 1.9;
    opacity: 0.95;
}

/* SCRIPT */
.script-ko {
    font-family: 'Jost', sans-serif;
    font-size: clamp(0.8rem, 1.2vw, 0.9rem);
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.script-en {
    font-family: 'Salonica', cursive;
    font-size: clamp(2rem, 5vw, 4rem);
    color: #fff;
    margin-top: 10rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: lowercase;
}

/* LOGO */
.logo img {
    width: clamp(70px, 8vw, 90px);
    margin-top: 1rem;
}

/* ======================================
   3. BOTTOM SECTION
====================================== */
.vision-bottom {
    text-align: center;
    background: #fff;
    color: #111;
    padding: 6rem 1rem 0rem;
}

.vision-bottom h3 {
    font-family: 'Jost', sans-serif;
    color: var(--main-green);
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.vision-bottom h4 {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: #333;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.vision-bottom p {
    font-size: clamp(0.85rem, 1.4vw, 0.95rem);
    color: #444;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.since {
    font-size: clamp(0.7rem, 1vw, 0.8rem);
    font-weight: 700;
    margin: 3rem 0;
    letter-spacing: 0.1em;
    color: #000;
    text-align: center;
}

/* ======================================================
   VISION PAGE 반응형 개선 (2025-10-29)
   - company.css 스타일 리듬 통일
   - 간격, 폰트, 여백 비율 조정
====================================================== */

/* --- 1500px 이하 --- */
@media (max-width: 1500px) {
    .vision-content {
        max-width: 1200px;
    }
}

/* --- 1200px 이하 : 레이아웃 축소 시작 --- */
@media (max-width: 1200px) {


    .vision-hero {
        height: auto;
        min-height: 80vh;
        padding: 5rem 6%;
    }

    .vision-menu {
        margin-bottom: 12rem;
        gap: clamp(1rem, 2.5vw, 1.8rem);
    }

    .main-title {
        font-size: clamp(1.3rem, 2.3vw, 1.8rem);
    }

    .sub-title {
        font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    }

    .desc {
        font-size: clamp(0.85rem, 1.4vw, 0.95rem);
        line-height: 1.8;
        max-width: 1000px;
        margin: 0 auto 3.5rem;
    }

    .script-en {
        font-size: clamp(2rem, 4vw, 3rem);
        margin-top: 8rem;
    }

    .vision-bottom {
        padding: 5rem 1rem 1rem;
    }

    .vision-bottom h3 {
        font-size: clamp(1.3rem, 2vw, 1.6rem);
    }

    .vision-bottom h4 {
        font-size: clamp(0.9rem, 1.6vw, 1.1rem);
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    .vision-bottom p {
        font-size: clamp(0.85rem, 1.4vw, 0.95rem);
        line-height: 1.8;
        margin-bottom: 3rem;
    }

    .logo img {
        width: clamp(70px, 8vw, 90px);
    }
    .since {
        margin: 0;
    }
}

/* --- 900px 이하 : 태블릿 전환 --- */
@media (max-width: 900px) {

    .vision-menu {
        flex-wrap: wrap;
        margin-bottom: 9rem;
        gap: 1.5rem;
    }

    .main-title {
        font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    }

    .sub-title {
        font-size: clamp(0.9rem, 2.2vw, 1rem);
    }

    .desc {
        font-size: 0.9rem;
        line-height: 1.8;
        padding: 0 1rem;
    }

    .vision-hero {
        height: auto;
        padding: 4rem 5%;
    }

    .script-en {
        font-size: clamp(1.8rem, 5vw, 2.6rem);
        margin-top: 7rem;
    }

    .vision-bottom {
        padding: 4.5rem 1rem 1rem;
    }

    .vision-bottom p {
        font-size: 0.9rem;
        line-height: 1.8;
    }
    .since {
        margin-bottom: 4rem;
    }
}

/* --- 800px 이하 : 모바일 전환 시작 --- */
@media (max-width: 800px) {


    .vision-menu {
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 8rem;
        font-size: clamp(0.8rem, 3vw, 0.9rem);
    }

    .main-title {
        font-size: clamp(1.1rem, 3vw, 1.3rem);
    }

    .sub-title {
        font-size: clamp(0.85rem, 3vw, 1rem);
    }

    .desc {
        font-size: 0.9rem;
        line-height: 1.8;
        padding: 0 0.8rem;
        margin-bottom: 3rem;
    }

    .vision-hero {
        height: auto;
        padding: 3.5rem 1.5rem;
    }

    .script-en {
        font-size: clamp(1.5rem, 5vw, 2.2rem);
        margin-top: 6rem;
    }

    .vision-bottom {
        padding: 4rem 1rem 1rem;
    }

    .vision-bottom h3 {
        font-size: 1.3rem;
    }

    .vision-bottom h4 {
        font-size: 1rem;
    }

    .vision-bottom p {
        font-size: 0.9rem;
    }

    .logo img {
        width: clamp(60px, 10vw, 70px);
    }
}

/* --- 600px 이하 : 작은 모바일 대응 --- */
@media (max-width: 600px) {

    .vision-menu {
        flex-wrap: wrap;
        gap: 0.8rem;
        margin-bottom: 6rem;
    }

    .main-title {
        font-size: 1.2rem;
    }

    .sub-title {
        font-size: 0.9rem;
    }

    .desc {
        font-size: 0.85rem;
        line-height: 1.7;
        padding: 0 0.5rem;
    }

    .script-en {
        font-size: clamp(1.3rem, 4vw, 1.8rem);
        margin-top: 5rem;
    }

    .vision-bottom {
        padding: 3.5rem 1rem;
    }

    .vision-bottom h3 {
        font-size: 1.2rem;
    }

    .vision-bottom h4 {
        font-size: 0.95rem;
    }

    .vision-bottom p {
        font-size: 0.85rem;
    }

    .logo img {
        width: clamp(55px, 10vw, 65px);
    }
}

/* --- 400px 이하 : 최소 대응 --- */
@media (max-width: 400px) {
    .top-en {
        font-size: 1.2rem;
    }

    .main-title {
        font-size: 1.1rem;
    }

    .sub-title {
        font-size: 0.9rem;
    }

    .desc {
        font-size: 0.8rem;
        line-height: 1.6;
    }

    .script-en {
        font-size: 1.6rem;
        margin-top: 4rem;
    }

    .vision-bottom {
        padding: 3.5rem 0.8rem 1rem;
    }

    .vision-bottom h3 {
        font-size: 1.15rem;
    }

    .vision-bottom h4 {
        font-size: 0.9rem;
    }

    .vision-bottom p {
        font-size: 0.8rem;
        line-height: 1.6;
    }

    .logo img {
        width: 60px;
    }
}
