.landing-page section {
    padding-top: 200px;
}


.landing-page section h2 {
    text-shadow: 0 0 8px #00000040;
    font-family: "Inter-SemiBold", Helvetica;
    font-weight: 600;
    color: #222;
    font-size: 48px;
    letter-spacing: -.96px;
    line-height: normal;
    margin-bottom: 50px;
}

.landing-page h3 {
    font-family: var(--title-font-family);
    font-weight: var(--title-font-weight);
    color: #fff;
    font-size: 5vmin;
    letter-spacing: var(--title-letter-spacing);
    line-height: var(--title-line-height);
    font-style: var(--title-font-style);
    text-align: justify;
    text-justify: inter-character;
}

.landing-page section {
    position: relative;
    width: 100%;
    text-align: center;
}


/* Section: Main Image 시작 */



.t-visual-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #261a18;
    overflow: hidden;
}

.t-visual-bg-area {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
}

/* 배경 패턴 */
.t-visual-pattern {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.02) 2px,
        rgba(255, 255, 255, 0.02) 4px
    );
    z-index: 2;
    pointer-events: none;
}

/* 애니메이션 캔버스 판데기 */
.t-visual-canvas {
    position: absolute;
    top: -80%; left: -80%; 
    width: 260%; height: 260%;
    transform: rotate(-45deg);
    z-index: 3;
}

/* 글자 가독성용 오버레이 */
.t-visual-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 4;
}

/* 개별 라인 - 클래스명 고유화 */
.t-visual-line-item {
    position: absolute;
    border-radius: 100px;
    opacity: 0;
    animation: tVisualMoveDown linear infinite;
}

/* 애니메이션: 굵은 선들이 끝까지 자연스럽게 사라지도록 이동 거리 조정 */
@keyframes tVisualMoveDown {
    0% { transform: translateY(-30vh); opacity: 0; }
    10% { opacity: 0.7; } 
    90% { opacity: 0.7; }
    100% { transform: translateY(180vh); opacity: 0; }
}

.main-bg-box {
    position: relative;
    width: 100%;  /* 원하는 가로 크기 */
    height: 40vh; /* 원하는 세로 크기 */
    margin-right: 5%;
    background-image: url("../img/250off.svg");
    background-size: contain;    /* 이미지가 잘리지 않게 전체 다 보여줌 */
    background-position: center; /* 중앙 정렬 */
    background-repeat: no-repeat; /* 반복 방지 */
    
    /* [선택] 이미지 둥둥 떠 있는 느낌을 주고 싶다면 추가 */
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.3));
flex: 1;
}

.landing-page .div-wrapper {
    position: relative;
     margin-top: 0;      /* [수정] margin 대신 top으로 제어 */
    z-index: 10;        /* [핵심] 배경(4)보다 높은 수치 부여 */
width: 100%;
    text-align: left;
    flex: 1;
    margin-left: 5%;
    margin-top: 500px;
}

.landing-page .text-wrapper-58 {
    font-family: "Inter-Regular", Helvetica;
    letter-spacing: -.2px;
}

.landing-page .element-2 {
    width: 400px;
    height: 156px;
    font-family: "Inter-Black", Helvetica;
    font-weight: 400;
    color: #fff;
    font-size: 3vmin;
    letter-spacing: -.64px;
    line-height: normal;
    text-align: justify;
    text-justify: inter-character;
    margin-top: 30px;
}

.element-2 .span {
    font-weight: 900;
    letter-spacing: -.2px;
    text-decoration: underline;
}

.main-content-wrap {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transform: translateY(-50%) scale(0.95);
    z-index: 10;
    opacity: 0;
    transition: all 1.5s ease-out;
}

.main-content-wrap.active {
    opacity: 1 !important;
    transform: translateY(-50%) scale(1) !important;
}

@media (max-width: 768px) {
    .main-content-wrap {
        display: flex !important;
        flex-direction: column !important; /* 세로로 쌓기 */
        justify-content: center !important;
        align-items: center !important;
    }

    /* 1. 이미지 박스를 첫 번째 순서로 설정 */
    .main-bg-box {
        order: 1 !important; 
        height: 250px !important;
        margin-bottom: 20px !important; /* 글자와의 간격 */
        flex: none !important;
        display: block !important;
    }

    /* 2. 글자 박스를 두 번째 순서로 설정 */
.landing-page .div-wrapper {
    order: 2 !important; 
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important; /* 자식 요소들을 가로 중앙으로 배치 */
        text-align: center !important;  /* 텍스트 내용 자체를 중앙 정렬 */
        width: 100% !important;
        margin: 0 !important;      /* 기존 왼쪽 마진 제거 */ 
    }

    /* 2. 자식 요소들: h3와 p 태그의 정렬 및 너비 강제 */
    .landing-page .div-wrapper h3,
    .landing-page .div-wrapper p,
    .landing-page .element-2 {
        width: 100% !important;
        text-align: center !important;  /* 글자 한 줄 한 줄 중앙 정렬 */
        margin-left: auto !important;
        margin-right: auto !important;
        justify-content: center !important; /* flex일 경우 대비 */
    }

    /* 3. 혹시 element-2 안에 있는 span 태그들이 엇나간다면 */

}
/* Section: Main Image 끝 */



/* Section: Recent Projects 시작 */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #444;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.landing-page .slider {
    position: relative;
    width: 75%;
    height: 55vh;
    margin-top: 50px;
    overflow: hidden;
    margin: 0 auto;
}


.landing-page .image-list {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.5s ease;
}

.landing-page .image-list p {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    text-shadow: 0 0 10px #00000040;
    font-family: "Inter-SemiBold", Helvetica;
    font-weight: 600;
    color: #fff;
    font-size: 32px;
    letter-spacing: -.64px;
    line-height: normal;
    text-align: center;
    /* 중앙 정렬 */
    margin-bottom: 50px;
}

/* Section: Recent Projects 끝 */


/* Section: Portfolio 시작 */

.section-Portfolio {
    padding-bottom: 200px;
}


.portfolio-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
}

.portfolio-item {
    flex: 1 0 33.3333%;
    max-width: 33.3333%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #eee;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.btn-more {
    width: 10.5%;
    height: 5vh;
    display: block;
    margin: 50px auto 0;
    border-radius: 40px;
    background-color: var(--x2w-logo-2);
    box-shadow: 0 0 8px #00000040;
    font-family: "Inter-Medium", Helvetica;
    font-weight: 500;
    color: #fff;
    font-size: 1.2em;
    transition: all 0.3s;
    line-height: 5vh;
    text-align: center;
}

.btn-more:hover {
    background: #B4C08E;
    font-size: 1.4em;
}



@media (max-width: 768px) {
    /* 포트폴리오 컨테이너: 여백 없이 꽉 차게 설정 */
    .portfolio-container {
        display: flex;
        flex-wrap: wrap; /* 줄바꿈 허용 */
        width: 100%;
    }

    /* 각 아이템: 가로 50%씩 차지 (2개씩 배치) */
    .portfolio-item {
        flex: 0 0 50% !important; 
        max-width: 50% !important;
        aspect-ratio: 1 / 1; /* 정사각형 유지 */
    }


    /* 이미지: 영역에 꽉 차게 설정 */
    .portfolio-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /* 제목 폰트 크기 조정 (선택사항) */
    .landing-page section h2.text-wrapper-53 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    /* 더보기 버튼 너비 조정 */
    .btn-more {
        width: 40% !important; /* 모바일에서는 좀 더 넓게 */
        font-size: 16px;
    }
}

/* Section: Portfolio 끝 */


/* Section: About 시작 */
.section-about-outer {
    position: relative;
    height: calc(4 * (100vh - 120px) + 120px);
}

.section-about-sticky {
    position: sticky;
    top: 120px;
    height: calc(100vh - 120px);
    overflow: hidden;
}

.landing-page .section-about {
    position: relative;
    display: flex;
    width: 100%;
    height: calc(100vh - 120px);
    background-color: #454545;
    padding-top: 0 !important;
}

.section-about h3 {
    flex: 1;
    margin: 80px 0 0 4%;
}

.landing-page .section-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/about_bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left center;
    background-attachment: fixed;
    opacity: 0.2;
    z-index: 0;
}

.landing-page .section-about>* {
    position: relative;
    z-index: 1;
}

.landing-page .r_box {
    width: 50%;
    padding: 5% 5% 5% 0;
}

.slide-text {
    z-index: 2;
    color: #fff;
    text-align: justify;
    text-justify: inter-character;
    font-size: 1.5vmin;
}

.landing-page .text-wrapper-51 {
    font-family: "Inter-SemiBold", Helvetica;
    font-weight: 600;
    color: #ffffff;
    font-size: 4vmin;
    letter-spacing: -.96px;
    line-height: normal;
    position: absolute;
    top: 8%;
    left: 8%;
}

.landing-page .text-wrapper-52 {
    width: 50%;
    position: absolute;
    left: 8%;
    bottom: 8%;
    font-size: 2vmin;
}

.slider-nav {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #454545;
    position: relative;
}

.slider-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 400%;
    margin: 0;
    padding: 0;
    list-style: none;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-item {
    position: relative;
    width: 100%;
    height: 25%;
    display: flex;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    align-items: center;
    justify-content: center;
}

.slide-1 {
    background-image: url("../img/about01.jpg");
}

.slide-2 {
    background-image: url("../img/about01.jpg");
}

.slide-3 {
    background-image: url("../img/about01.jpg");
}

.slide-4 {
    background-image: url("../img/about01.jpg");
}


@media (max-width: 768px) {
    /* 1. 부모 컨테이너: 가로(row)에서 세로(column)로 변경 */
    .landing-page .section-about {
        display: flex;
        flex-direction: column; /* 여기서 상하 정렬로 바뀝니다 */
        justify-content: flex-start;
        align-items: center;
        padding-top: 60px !important; /* 상단 여백 */
        height: 100vh; /* 스티키 효과 유지를 위해 높이 고정 */
    }

    /* 2. 상단 제목(h3) 설정 */
    .section-about h3 {
        width: 100%;
        flex: 0 0 auto; /* 높이 고정 */
        margin: 0 0 20px 0 !important;
        text-align: center;
        font-size: 46px;
        padding: 0 20px;
        box-sizing: border-box;
    }

    /* 3. 하단 슬라이더 박스(r_box) 설정 */
    .landing-page .r_box {
        width: 100% !important; /* 가로 꽉 차게 */
        flex: 1; /* 남은 아래쪽 공간 다 차지 */
        padding: 0 !important;
        margin: 0 !important;
    }

    /* 4. 슬라이더 내부 요소들 위치 재조정 (중앙 정렬) */
    .slider-nav {
        width: 100%;
        height: 100%;
    }

    .landing-page .text-wrapper-51 {
        position: relative !important;
        left: 0;
transform: translateY(-50%);
        width: 100%;
        text-align: center;
        font-size: 50px;
    }

    .landing-page .text-wrapper-52 {
        position: absolute !important;
         left: 0 !important;
         bottom: 20%;
        width: 100% !important;
        font-size: 25px;
        text-align: justify;

}
}

/* Section: About 끝 */


/* What You Pay 시작 */
.price-table-container {
    position: relative;
    margin: 0 auto;
}

.table-border-bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 31vh;
    background-image: url('../img/border-doodle.png');
    background-size: 100% 100%;
    pointer-events: none;
    border: 2px solid #333;
    filter: url(#hand-drawn);
    border-radius: 30px;
}

.price-table {
    display: grid;
    width: 50%;
    height: 31vh;
    grid-template-columns: repeat(4, 25%);
    grid-template-rows: repeat(5, 20%);
    padding: 0 5%;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

.table-column {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.cell {
    font-size: 1.5vmin;
    font-weight: 500;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-sizing: border-box;
}

.price-table .header {
    font-size: 2vmin;
}

.category .header {
    padding-left: 10px;
    text-align: left;
    flex: 0.8;
}

.price-table-container .box1 {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-48%, 2%);
    width: 50%;
    height: 31vh;
    border-radius: 30px;
    background-color: #ececec;
    z-index: -2;
}

.price-table-container .box2 {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-46%, 15%);
    background-color: #A28757;
    z-index: -1;
    border-radius: 30px;
    width: 48%;
    height: 3vh;
}

.price-table-container img {
    position: absolute;
    top: 0;
    left: 50%;
    pointer-events: none;
}

.can {
    transform: translate(-250%, -120%);
    width: 20vmin;
    z-index: -1;
    animation: float 2s ease-in-out infinite;
}

.leaf {
    transform: translate(-220%, -97%);
    width: 10vmin;
    z-index: -1;
}

.water01 {
    transform: translate(-950%, -220%);
    width: 3vmin;
}

.water02 {
    transform: translate(-850%, -520%);
    width: 3vmin;
}

.water03 {
    transform: translate(-1050%, -720%);
    width: 3vmin;
}

@keyframes float {
    0% {
        transform: translate(-250%, -120%);
    }

    50% {
        transform: translate(-250%, -123%);
    }

    100% {
        transform: translate(-250%, -120%);
    }
}

.qna_btn {
    position: relative;
    width: 23.5%;
    height: 7.5vh;
    display: flex;
    align-items: center;
    border: 2px solid #333;
    filter: url(#hand-drawn);
    margin: 100px auto 0;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.2s;
}

.qna_btn span {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 0.3em;
    transition: all 0.2s ease-in-out;
    font-size: 2.8vmin;
    white-space: nowrap;
    font-family: "Inter-Medium", Helvetica;
    font-weight: 700;
    color: #000;
    line-height: 1;
}

.qna_btn img {
    display: block;
    width: 60%;
    height: 60%;
    transform-origin: center center;
    transition: transform 0.2s ease-in-out;
}

.qna_btn:hover img {
    transform: translateX(3em) rotate(45deg) scale(1.1);
}

.qna_btn:hover span {
    transform: translateX(10em);
}

.qna_btn:active {
    transform: scale(0.95);
}

.qna_btn:hover .svg-wrapper {
    animation: fly-1 0.6s ease-in-out infinite alternate;
}

@keyframes fly-1 {
    from {
        transform: translateY(0.1em);
    }

    to {
        transform: translateY(-0.1em);
    }
}

.paper-plane {
    position: absolute;
    bottom: 0;
    transform: translateY(50%);

    left: 0;
    width: 40%;
    height: 60%;
    background-image: url("../img/Paper_plane.png");
    background-size: contain;
    background-repeat: no-repeat;
}

.landing-page .sqr {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-48%, 2%);
    width: 23.5%;
    height: 93px;
    background-color: #ececec;
    border-radius: 50px;
    z-index: -1;
}

@media (max-width: 768px) {
    /* 1. 표 컨테이너 및 배경 박스 100%로 확대 */
    .price-table, 
    .table-border-bg, 
    .price-table-container .box1 {
        width: 100% !important;
        left: 0 !important;
        transform: none !important;
        height: auto !important; /* 내용에 맞게 높이 조절 */
        min-height: 350px;
    }

    /* 2. 장식용 갈색 박스(box2) 조정 */
    .price-table-container .box2 {
        width: 96% !important;
        left: 2% !important;
        transform: translateY(15%) !important;
    }

    /* 3. 표 내부 레이아웃 및 폰트 조절 */
    .price-table {
        padding: 20px 5% !important;
        display: grid;
        /* 기존 4열 유지 혹은 가독성을 위해 폰트 축소 */
        grid-template-columns: repeat(4, 1fr); 
    }

    .cell {
        font-size: 13px !important; /* 모바일에서 읽기 편한 크기 */
        padding: 5px 2px;
    }

    .price-table .header {
        font-size: 14px !important;
        font-weight: 700;
    }

    /* 4. 장식 이미지(물뿌리개 등) 위치 재조정 (겹치지 않게) */
    .can {
        transform: translate(180%, -100%) scale(0.7) !important;
        left: -300px !important;
        z-index: 1;
    }
    
    .leaf {
        left: 300px !important;
    }

    .water01, .water02, .water03 { 
        margin-left: -50px;
    }

    /* 5. 문의하기 버튼 너비 확대 */
    .qna_btn {
        width: 40% !important;
        height: 60px;
        margin-top: 60px;
    }

    .qna_btn span {
        font-size: 18px !important;
    }

    /* 6. 버튼 뒤 배경 박스 조정 */
    .landing-page .sqr {
        width: 40% !important;
        transform: translate(-50%, 5%);
        left: 50%;
        height: 60px;
    }
}


/* What You Pay 끝 */


/* What We Do 시작 */

.landing-page .do-txt {
    width: 100%;
    display: flex;
    list-style: none;
}

.do-txt li {
    flex: 0 0 25%;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.landing-page .text-wrapper-26,
.landing-page .text-wrapper-27,
.landing-page .text-wrapper-28 {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Inter-SemiBold", Helvetica;
    font-weight: 600;
    color: #222;
    font-size: 1.8vmin;
    height: 30%;
    margin: 0;
    text-align: center;
    letter-spacing: -.4px;
    line-height: normal;
}

.do-txt li img {
    width: 100%;
    height: 70%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s;
}

@media (max-width: 768px) {
    .do-txt {
        flex-wrap: wrap;
    }

    .do-txt li {
        flex: 0 0 50%;
    }

    .landing-page .text-wrapper-26,
    .landing-page .text-wrapper-27,
    .landing-page .text-wrapper-28 {
        font-size: 3.5vmin;
    }
}

/* What We Do 끝 */


/* What You Get 시작 */

.wwg-section {
    background-color: #ffffff;
    padding: 100px 0 200px;
}

.wwg-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.wwg-title {
    font-size: 40px;
    font-weight: 800;
    color: #333;
    margin-bottom: 80px;
    letter-spacing: 2px;
}

/* 4열 그리드 배치 */
.wwg-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 40px;
    row-gap: 80px;
    justify-items: center;
    margin-top: 60px;
}

.wwg-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wwg-text {
    font-size: 16px;
    font-weight: 600;
    color: #666;
    margin-bottom: 20px;
    transition: color 0.3s ease;
    word-break: keep-all;
}

.wwg-item:hover .wwg-text {
    color: #b5c28f;
}

.wwg-item img:hover {
    outline: 2px solid #ffffff;
    outline-offset: -2px;
}

.wwg-item img {
    max-width: 100%;
    height: auto;
    display: block;
    clip-path: circle(49% at 50% 50%);
    transition: all 0.5s ease-in-out;
}

/* 반응형 모바일 */
@media (max-width: 768px) {
    .wwg-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 50px;
    }

    .wwg-text {
        font-size: 14px;
    }
}

/* What You Get 끝 */


/* 배너 롤링 부분 여기부터 */

.logo-slider-section {
    width: 100%;
    background-color: #fff;
    padding: 60px 0;
    overflow: hidden;
    margin-bottom: 150px;
}

.logo-slider {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
}

.logo-track {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.logo-items {
    display: flex;
    align-items: center;
    gap: 120px;
    padding-right: 120px;
}

.logo-items img {
    width: 180px;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.5s ease;
    cursor: pointer;
}

.logo-items img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* 반응형 모바일 */
@media (max-width: 768px) {
    .logo-track {
        animation-duration: 20s;
    }

    .logo-items img {
        width: 120px;
    }
}

/* Section: Location 시작 */
.location-section {
    background-color: #2c2c2c;
    background-image: linear-gradient(rgba(44, 44, 44, 0.9), rgba(44, 44, 44, 0.9)),
        url('../img/location-bg.jpg');
    background-size: cover;
    padding: 100px 0;
    color: #fff;
}

.location-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 60px;
    padding: 0 20px;
}

.location-info {
    flex: 1;
}

.loc-title {
    color: #fff !important;
    text-align: left;
}

.address-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: left;
    display: block;
    width: 100%;
}

.address-box .line {
    width: 130px;
    height: 2px;
    background-color: #fff;
    margin-bottom: 25px;
}

.address-box p {
    font-size: 17px;
    line-height: 1.6;
    font-weight: 300;
    opacity: 0.9;
    word-break: keep-all;
    text-align: left;
    display: block;
    width: 100%;
}

.location-map {
    flex: 1.2;
}

.map-iframe-wrapper {
    width: 100%;
    height: 400px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 20px 20px 0px rgba(0, 0, 0, 0.2);
}

.map-iframe-wrapper iframe {
    width: 100%;
    height: 100%;
}

/* 반응형 (태블릿/모바일) */
@media (max-width: 991px) {
    .location-container {
        flex-direction: column;
        text-align: center;
    }

    .location-map {
        width: 100%;
    }

    .loc-title {
        font-size: 40px;
        margin-bottom: 40px;
    }
}

/* Section: Location 시작 */
.landing-page .div {
    position: absolute;
    top: 42px;
    left: 0;
    height: 24px;
    display: flex;
    align-items: center;
    font-family: "Inter-Regular", Helvetica;
    font-weight: 400;
    color: #ffffffcc;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 24px;
    white-space: nowrap
}

.landing-page .div {
    top: 0;
    height: 48px;
    font-family: "Inter-Black", Helvetica;
    font-weight: 900;
    color: #fff;
    font-size: 32px;
    line-height: 48px
}

/* Top button */
.TOP-button {
    position: fixed;
    bottom: 60px;
    right: 60px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

.TOP-button.show {
    opacity: 0.8;
    visibility: visible;
}



/* 서브 페이지 공용 */

.portfolio-header, .consulting-header {
    text-align: center;
    margin: 80px 0;
}

.portfolio-header h1, .consulting-header h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -1px;
}


/* Consulting */

/* 컨설팅(Contact) 페이지 전용 스타일 */
.contact-section {
    padding: 150px 0 100px; 
    background-color: #f9f9f9;
}

.contact-container {
    max-width: 900px; 
    margin: 0 auto;
    padding: 0 20px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    background-color: #fff;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 16px;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus, 
.form-group textarea:focus {
    border-color: #b5c28f; 
}

.form-group textarea {
    resize: none;
    line-height: 1.6;
    font-family: inherit;
}

.full-width {
    margin-bottom: 20px;
}

.btn-area {
    text-align: center;
    margin-top: 30px;
}

.submit-btn {
    width: 200px;
    padding: 15px;
    background-color: #b5c28f; 
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background-color: #9fb074;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 10px;
    }
    .contact-section {
        padding-top: 120px;
    }
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

#opening-mask {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: #261a18;
    z-index: 99999;
    transition: opacity 1.2s ease-out, visibility 1.2s;
}
#opening-mask.fade-out { opacity: 0; visibility: hidden; }

#header-include.opening-reveal-top {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 10000;
    opacity: 0;
    transform: translateY(-120px);
    transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1), opacity 1s ease-out;
}

#header-include.opening-reveal-top.active {
    opacity: 1;
    transform: translateY(0);
}

.opening-reveal-bg, .opening-reveal-center {
    opacity: 0;
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}
.opening-reveal-bg.active { opacity: 1; }
.opening-reveal-center.active { 
    opacity: 1 !important; 
    transform: translateY(-50%) scale(1) !important; /* 위에서 설정한 중앙정렬 유지 */
}
.opening-reveal-center { 
    transform: translateY(-50%) scale(0.95); 
}
/*.t-visual-section { background-color: #261a18 !important; }*/