@charset "UTF-8";

@font-face {
    font-family: 'TheSignature';
    /* css 폴더에서 한 단계 밖으로 나간 뒤(../), fonts 폴더로 들어가는 구조 */
    src: url('../fonts/Thesignature.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@import url('//fonts.googleapis.com/earlyaccess/nanummyeongjo.css');

/* ==========================================================================
   1. CSS Reset (기본 여백 및 스타일 초기화)
   ========================================================================== */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}

/* HTML5 시맨틱 태그 블록 처리 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    line-height: 1.6;
    /* 폰트 설정: Pretendard 폰트가 1순위, 없으면 기본 폰트 적용 */
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
    color: #1e293b;
    background-color: #fff;
    /* 브라우저 가로 스크롤 및 숨은 여백 원천 차단 */
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* 리스트 기호(점) 제거 */
ol,
ul,
li {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

button {
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    padding: 0;
    color: inherit;
}

input,
select,
textarea {
    font-family: inherit;
    outline: none;
    border: 1px solid #e2e8f0;
}

.sr_only,
.blind {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    letter-spacing: -1px;
}

/* ===================================================================
       1. 메인 풀페이지 슬라이드 기본 스타일
       ================================================================== */
.hero-slider {
    width: 100%;
    height: 100dvh;
    min-height: 520px;
}

.hero-slider .swiper-slide {
    background-size: cover;
    background-position: center;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #fff;
    position: relative;
    white-space: normal;
}

/* 슬라이드 어둡게 처리 */
.hero-slider .swiper-slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

/* 2. 텍스트 컨텐츠 스타일 (PC 기준) */
.hero-slider .swiper-slide-content {
    position: relative;
    z-index: 2;
    margin-bottom: 0;
    text-align: left;
    width: 100%;
    padding: 0 100px;
}

.hero-slider .slide-sub1 {
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 15px;
}

.hero-slider .slide-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 35px;
    line-height: 1.2;
}

.hero-slider .slide-sub2 {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 1.3;
}

/* ─── 둥둥 떠다니는 모던 스크롤 아이콘 CSS ─── */
.slider-scroll-down {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    pointer-events: none;
}

.scroll-mouse-shape {
    width: 20px;
    height: 32px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    position: relative;
}

.scroll-mouse-wheel {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: #bf9b62;
    border-radius: 2px;
    animation: scrollWheelMove 1.8s infinite ease-in-out;
}

@keyframes scrollWheelMove {
    0% {
        top: 6px;
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    80% {
        top: 16px;
        opacity: 0;
    }

    100% {
        top: 6px;
        opacity: 0;
    }
}


/* 3. 럭셔리 라인 프로그레스 페이지네이션 커스텀 CSS */
.hero-slider .swiper-pagination-custom {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    z-index: 10;
    width: auto;
}

.pagination-bullet-custom {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    opacity: 0.4;
    transition: opacity 0.4s ease;
}

.pagination-bullet-custom.active {
    opacity: 1;
}

.pagination-bullet-custom .bullet-number {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
    font-family: 'Cinzel', sans-serif;
}

.pagination-bullet-custom .bullet-line-track {
    position: relative;
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.pagination-bullet-custom .bullet-line-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #bf9b62;
}

.pagination-bullet-custom.active .bullet-line-fill {
    width: 100%;
}


@media(max-width: 1600px) {
    .hero-slider .swiper-slide-content {
        padding: 0 60px;
    }
}

/* ===================================================================
       반응형 화면 보정 (모바일 기준)
       ================================================================== */
@media(max-width: 991px) {
    .hero-slider {
        height: calc(100dvh - 56px);
    }

    .hero-slider .swiper-slide-content {
        padding: 0 20px 50px;
    }

    /* ★ 모바일 텍스트 규격 최적화 */
    .hero-slider .slide-sub1 {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .hero-slider .slide-title {
        font-size: 26px;
        margin-bottom: 20px;
        font-weight: 600;
    }

    .hero-slider .slide-sub2 {
        font-size: 15px;
    }

    .hero-slider .swiper-pagination-custom {
        bottom: 40px;
    }

    .pagination-bullet-custom .bullet-line-track {
        width: 45px;
    }

    .pagination-bullet-custom .bullet-number {
        font-size: 14px;
    }

    .slider-scroll-down {
        bottom: 100px;
    }
}


/* ===================================================================
       2. 메인 사업개요 스타일
       ================================================================== */

.main-overview-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.main-overview-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.88);
    /* 흰색 배경 오버레이 마스킹 */
    z-index: -1;
}

.overview-wrap {
    display: flex;
    gap: 60px;
    align-items: center;
    margin: 0 auto;
}


/* 왼쪽: 텍스트 및 정보 영역 */
.overview-text-box {
    flex: 1.3;
    padding: 50px;
}

.overview-text-box .section-title {
    font-size: 4rem;
    color: #0f172a;
    margin: 0 0 20px 0;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 30px;
}

.grid-item {
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 25px;
}

.grid-item .item-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 12px;
}

.grid-item .item-value {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    word-break: keep-all;
}

/* 오른쪽: 조감도 이미지 영역 */
.overview-img-box {
    flex: 0.7;
    text-align: right;
    width: 100%;
}

.overview-img-box img {
    width: 100%;
    height: 800px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    object-fit: cover;
}

/* 강조 문구 전용 스타일 */
.overview-text-box .section-highlight {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 100px 0;
    word-break: keep-all;
    line-height: 1.4;
}

.overview-text-box .section-highlight span {
    color: #0ea5e9;
}

/* 태블릿 및 모바일 반응형 대응 */
@media (max-width: 1200px) {
    .overview-text-box {
        flex: 0.7;
    }

    .overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-item .item-label {
        margin-bottom: 8px;
    }

    .grid-item {
        margin-bottom: 15px;
    }

    .overview-text-box .section-highlight {
        margin: 0 0 50px 0;
    }

    .overview-wrap {
        padding: 50px;
    }

    .overview-text-box {
        padding: 0;
    }

    .overview-img-box img {
        height: 600px;
    }
}

@media (max-width: 991px) {
    .main-overview-section {
        padding: 80px 15px;
    }

    .overview-wrap {
        flex-direction: column;
        gap: 40px;
        padding: 0;
    }

    .overview-text-box {
        width: 100%;
        padding: 6px;
    }

    .overview-img-box {
        text-align: center;
        order: -1;
    }

    .overview-img-box img {
        height: auto;
        aspect-ratio: 4 / 3;
        border-radius: 15px;
    }

    .overview-text-box .section-title {
        font-size: 2.2rem;
        margin-bottom: 10px;
    }

    .overview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px 25px;
    }

    .grid-item {
        margin-bottom: 5px;
    }

    .overview-text-box .section-highlight {
        font-size: 1.2rem;
    }
}


/* ===================================================================
   3. 메인 프리미엄 카드 슬라이드
   =================================================================== */

.main-premium-section {
    position: relative;
    z-index: 1;
    padding: 145px 0 120px;
    overflow: hidden;
    background-color: #07101e;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    isolation: isolate;
}

/* 등록한 배경 이미지를 어둡게 덮는 레이어 */
.premium-section-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(180deg,
            rgba(4, 10, 20, 0.95) 0%,
            rgba(6, 15, 29, 0.90) 45%,
            rgba(4, 10, 20, 0.97) 100%);
}

/* 상단 골드빛 분위기 */
.premium-section-light {
    position: absolute;
    top: -320px;
    left: 50%;
    z-index: -1;
    width: 900px;
    height: 650px;
    background:
        radial-gradient(circle,
            rgba(192, 151, 92, 0.14) 0%,
            rgba(192, 151, 92, 0.04) 42%,
            transparent 72%);
    transform: translateX(-50%);
    pointer-events: none;
}

.premium-container {
    position: relative;
    width: 100%;
    max-width: 1600px;
    padding: 0 50px;
    margin: 0 auto;
}

/* 상단 타이틀 */
.premium-header {
    width: min(1400px, calc(100% - 60px));
    margin: 0 auto 70px;
    text-align: center;
}

.premium-kicker {
    display: block;
    margin-bottom: 22px;
    color: #caa36b;
    font-family: "Cinzel", serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.55em;
}

.premium-header .section-title {
    margin: 0;
    color: #d5ad77;
    font-family: "Cinzel", serif;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 1px;
}

.premium-header-desc {
    margin: 23px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: -0.02em;
    word-break: keep-all;
}

/* 슬라이더 전체 */
.premium-slider-wrap {
    position: relative;
    width: 100%;
}

.premium-card-swiper {
    width: 100%;
    padding: 0 74px 42px;
    overflow: hidden;
}

.premium-slide {
    height: auto;
}

/* 카드 */
.premium-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    background:
        linear-gradient(180deg,
            rgba(22, 33, 49, 0.97) 0%,
            rgba(13, 24, 39, 0.99) 100%);

    border: 1px solid rgba(255, 255, 255, 0.055);
    border-radius: 13px;
    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.25);
    transform: translateY(0);
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.45s ease,
        box-shadow 0.45s ease;
}

.premium-card:hover {
    border: 2px solid;
    border-color: rgba(202, 163, 107, 0.28);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
}

/* 이미지 영역 */
.premium-img-box {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3.5;
    overflow: hidden;
    background: #152033;
}

.premium-img-box img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.premium-card:hover .premium-img-box img {
    transform: scale(1.3);
}

/* 이미지와 텍스트 사이 자연스러운 그라데이션 */
.premium-img-gradient {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 34%;
    background:
        linear-gradient(180deg,
            transparent 0%,
            rgba(12, 23, 38, 0.7) 68%,
            rgba(12, 23, 38, 1) 100%);
    pointer-events: none;
}

.premium-image-cut {
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 3;

    padding: 4px 7px;

    color: rgba(255, 255, 255, 0.75);
    background: rgba(0, 0, 0, 0.42);

    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 3px;

    font-size: 10px;
    font-weight: 500;
    letter-spacing: -0.03em;

    backdrop-filter: blur(5px);
    pointer-events: none;
}

.premium-no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: rgba(255, 255, 255, 0.35);
    background:
        linear-gradient(135deg,
            #152033,
            #0c1728);

    font-family: "Cinzel", serif;
    font-size: 12px;
    letter-spacing: 0.18em;
}

/* 카드 텍스트 */
.premium-text-box {
    position: relative;
    flex: 1;
    padding: 30px 26px 34px;
}

.premium-number {
    color: #d1a568;
    font-family: "Cinzel", serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
}

.premium-divider {
    display: block;
    width: 28px;
    height: 1px;
    margin: 18px 0 22px;
    background: rgba(210, 172, 116, 0.85);
}

.premium-text-box .p-title {
    margin: 0 0 15px;
    color: #ffffff;
    font-family: "Cinzel", "Pretendard", serif;
    font-size: clamp(1.15rem, 1.25vw, 1.5rem);
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: -0.025em;

    word-break: keep-all;
}

.premium-text-box .p-desc {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.85;
    letter-spacing: -0.025em;
    word-break: keep-all;
}

/* 좌우 버튼 */
.premium-nav {
    position: absolute;
    top: 43%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    padding: 0;
    color: #ffffff;
    background: rgba(5, 11, 21, 0.82);
    border: 1px solid rgba(202, 163, 107, 0.35);
    border-radius: 50%;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.26);
    cursor: pointer;
    backdrop-filter: blur(10px);
    transform: translateY(-50%);
    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.premium-nav svg {
    width: 23px;
    height: 23px;
}

.premium-prev {
    left: -100px;
}

.premium-next {
    right: -100px;
}

.premium-nav:hover {
    color: #0a1422;
    background: #caa36b;
    border-color: #caa36b;
    transform:
        translateY(-50%) scale(1.06);
}

.premium-nav.swiper-button-disabled {
    opacity: 0.25;
    cursor: default;
    pointer-events: none;
}

/* 하단 페이지 표시 */
.premium-pagination {
    position: static !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto !important;
    margin-top: 50px;
}

.premium-pagination .swiper-pagination-bullet {
    width: 44px;
    height: 3px;
    margin: 0 8px !important;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    opacity: 1;
    transition:
        width 0.35s ease,
        background-color 0.35s ease;
}

.premium-pagination .swiper-pagination-bullet-active {
    width: 72px;
    background: #d3a86d;
}

/* ===================================================================
   프리미엄 반응형
   =================================================================== */
@media (max-width: 1800px) {
    .premium-container {
        max-width: 100%;
    }

    .premium-prev {
        left: 22px;
    }

    .premium-next {
        right: 22px;
    }
}

@media (max-width: 1500px) {
    .premium-card-swiper {
        padding-right: 60px;
        padding-left: 60px;
    }

    .premium-prev {
        left: 22px;
    }

    .premium-next {
        right: 22px;
    }

    .premium-text-box {
        padding: 27px 23px 31px;
    }
}

@media (max-width: 1200px) {
    .main-premium-section {
        padding: 120px 0 100px;
    }

    .premium-header {
        margin-bottom: 55px;
    }

    .premium-card-swiper {
        padding-right: 45px;
        padding-left: 45px;
    }

    .premium-nav {
        width: 54px;
        height: 54px;
    }

    .premium-prev {
        left: 15px;
    }

    .premium-next {
        right: 15px;
    }
}

@media (max-width: 991px) {
    .main-premium-section {
        padding: 95px 0 80px;
    }

    .premium-header {
        width: calc(100% - 40px);
        margin-bottom: 45px;
    }

    .premium-kicker {
        margin-bottom: 16px;
        font-size: 13px;
    }

    .premium-header .section-title {
        font-size: 3rem;
    }

    .premium-header-desc {
        margin-top: 18px;
        font-size: 16px;
    }

    .premium-card-swiper {
        padding-right: 30px;
        padding-left: 30px;
    }

    .premium-nav {
        display: none;
    }

    .premium-container {
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .main-premium-section {
        padding: 75px 0 65px;
    }

    .premium-header {
        width: calc(100% - 30px);
        margin-bottom: 35px;
    }

    .premium-header .section-title {
        font-size: 2.2rem;
    }

    .premium-header-desc {
        font-size: 14px;
    }

    .premium-card-swiper {
        padding-right: 18px;
        padding-left: 18px;
        overflow: visible;
    }

    .premium-card {
        border-radius: 10px;
    }

    .premium-img-box {
        aspect-ratio: 4 / 3;
    }

    .premium-text-box {
        padding: 24px 21px 27px;
    }

    .premium-number {
        font-size: 13px;
    }

    .premium-divider {
        margin: 15px 0 18px;
    }

    .premium-text-box .p-title {
        font-size: 1.2rem;
    }

    .premium-text-box .p-desc {
        font-size: 13px;
        line-height: 1.75;
    }

    .premium-pagination {
        padding: 0 18px;
    }

    .premium-pagination .swiper-pagination-bullet {
        flex: 1;
        width: auto;
        margin: 0 4px !important;
        max-width: 32px;
        height: 3px;
    }

    .premium-pagination .swiper-pagination-bullet-active {
        width: auto;
        max-width: 46px;
    }
}

/* ===================================================================
      4. 메인 입지환경 스타일 (구조 변경 완성형 버전)
   ================================================================== */
.main-location-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    padding: 160px 20px;
}

.main-location-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f3f3f3;
    z-index: -1;
}

.location-container {
    max-width: 1700px;
    margin: 0 auto;
}

/* 최상단으로 이동한 헤더 박스 */
.location-header-box {
    text-align: center;
    margin-bottom: 50px;
}

.location-header-box .section-title {
    font-family: 'TheSignature';
    font-size: 150px;
    font-weight: normal;
    letter-spacing: 3px;
    color: #0f172a;
    margin: 0 0 15px 0;
    line-height: 0.5;
}

/* 하단 콘텐츠 정렬 (좌측 지도와 우측 콘텐츠 높이 완전히 일치시킴) */
.location-wrap {
    display: flex;
    gap: 50px;
    align-items: stretch;
    /* ★ 좌우 자식들의 높이를 강제로 똑같이 맞춤 */
    position: relative;
}

/* 왼쪽: 지도 */
.location-map-box {
    flex: 1;
    position: relative;
}

/* ★ 중요: 지도가 부모 박스(.location-map-box)의 높이를 완전히 채우도록 보장 */
.location-map-box img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
    display: block;
}

/* 오른쪽 콘텐츠 전체 감싸는 부모 */
.location-right-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; 은 자식들 간격을 강제로 찢어놓으므로 삭제하거나 아래 stretch로 변경합니다 */
    justify-content: flex-start;
}

/* ★ 헤더 문구 하단 마진 조절 */
.loc-headline {
    font-family: 'Nanum Myeongjo', serif;
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.5;
    display: inline-block;
    padding-bottom: 25px;
    border-bottom: 1px solid #979797;
}

/* 오른쪽: 가로 2칸, 세로 2칸 그리드 (★ 상하 정중앙 배치 핵심 구역) */
.location-grid-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin-top: auto;
    margin-bottom: auto;
    padding: 20px 0;

}

/* 그리드 개별 카드 스타일 */
.loc-grid-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.loc-grid-item .grid-item-title {
    font-size: 22px;
    font-weight: 600;
    font-family: 'Nanum Myeongjo', serif;
    color: #005052;
    margin: 0 0 12px 0;
    letter-spacing: -1.5px;
}

.loc-grid-item .grid-item-desc {
    font-size: 17px;
    font-weight: 100;
    color: #5e5e5e;
    line-height: 1.6;
    letter-spacing: -1px;
    ;
    margin: 0;

}

.location-thumb-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 0 80px;
    margin-top: 0;
}

/* 썸네일 개별 아이템 카드 */
.loc-thumb-item {
    background: #ffffff;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

/* 썸네일 개별 이미지 영역 (4:3 비율 고정) */
.thumb-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f1f5f9;
}

.thumb-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.loc-thumb-item:hover .thumb-img-wrapper img {
    transform: scale(1.05);
}

/* 이미지 오른쪽 하단에 절대좌표로 겹쳐서 올라가는 반투명 태그 */
.thumb-image-cut-tag {
    position: absolute;
    right: 12px;
    bottom: 12px;
    font-size: 10px;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.65);
    padding: 3px 8px;
    border-radius: 4px;
    pointer-events: none;
    z-index: 2;
}


@media(max-width: 1400px) {
    .loc-headline {
        font-size: 20px;
    }

    .loc-grid-item .grid-item-title {
        font-size: 18px;
    }

    .loc-grid-item .grid-item-desc {
        font-size: 15px;
    }
}

/* 태블릿 및 모바일 반응형 대응 */
@media (max-width: 991px) {
    .main-location-section {
        padding: 80px 15px;
    }

    .location-header-box {
        margin-bottom: 15px;
    }

    .location-header-box .section-title {
        font-size: 70px;
    }

    .location-wrap {
        flex-direction: column;
        gap: 20px;
    }

    .location-map-box,
    .location-right-content {
        width: 100%;
    }

    .location-map-box img {
        height: auto;
    }

    .loc-headline {
        font-size: 18px;
        text-align: center;
        margin: 30px 0 15px;
    }

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

    .loc-grid-item {
        padding: 8px;
    }

    .loc-grid-item .grid-item-title {
        font-size: 16px;
    }

    .loc-grid-item .grid-item-desc {
        font-size: 13px;
    }

    /* 모바일에서는 3칸 썸네일도 1열 세로배치로 스마트폰 최적화 전환 */
    .location-thumb-box {
        gap: 8px;
        padding: 0 40px;
    }

    .thumb-image-cut-tag {
        right: 6px;
        bottom: 6px;
        font-size: 8px;
        padding: 2px 4px;
    }
}


/* ===================================================================
      5. 메인 단지/세대안내 스플릿 섹션 스타일
   ================================================================== */
.main-guide-split-section {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.guide-split-wrap {
    display: flex;
    width: 100%;
    min-height: 650px;
    /* PC 화면에서 시원한 개방감을 주는 고정 최소 높이 */
    align-items: stretch;
}

/* 좌우 개별 50% 박스 공통 서식 */
.guide-split-item {
    flex: 1;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* ★ 세로 정중앙 정렬 핵심 */
    align-items: center;
    /* ★ 가로 정중앙 정렬 핵심 */
    padding: 80px 40px;
    transition: all 0.5s ease;
}

/* 이미지 가독성을 확보해 주는 어두운 고급 마스킹 레이어 */
.guide-overlay-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.65);
    /* 반투명 블랙 틴트 */
    z-index: 1;
    transition: background 0.3s ease;
}

.guide-split-item:hover .guide-overlay-mask {
    background: rgba(15, 23, 42, 0.85);
    /* 호버 시 미세하게 어두워지며 깊이감 부여 */
}

/* 중앙 정렬 텍스트 컨테이너 */
.guide-text-center-box {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
}

/* 최상단 작은 영문 폰트 */
.guide-text-center-box .guide-sub-eng {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: #cbd5e1;
    margin-bottom: 12px;
    text-transform: uppercase;
}

/* 대타이틀 명조 계열 연동 포인트 */
.guide-text-center-box .guide-main-title {
    font-family: 'Nanum Myeongjo', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 25px 0;
    letter-spacing: -1px;
}

/* 상세 안내 문구 (2줄 분량) */
.guide-text-center-box .guide-description {
    font-size: 1.1rem;
    color: #f1f5f9;
    line-height: 1.7;
    margin: 0 0 40px 0;
    word-break: keep-all;
    font-weight: 300;
}

/* 테두리 형태의 세련된 바로가기 버튼 */
.guide-redirect-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 12px 45px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.guide-redirect-btn .arrow-icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

/* 버튼 마우스 호버 리액션 */
.guide-redirect-btn:hover {
    background: #ffffff;
    color: #0f172a;
    border-color: #ffffff;
}

.guide-redirect-btn:hover .arrow-icon {
    transform: translateX(4px);
}

/* 태블릿 및 모바일 반응형 대응 */
@media (max-width: 991px) {
    .guide-split-wrap {
        flex-direction: column;
        /* 모바일에서는 위아래로 배치 */
        min-height: auto;
    }

    .guide-split-item {
        width: 100%;
        min-height: 380px;
        /* 세로 배치 시 개별 적정 높이 배정 */
        padding: 60px 20px;
    }

    .guide-text-center-box .guide-main-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .guide-text-center-box .guide-description {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .guide-redirect-btn {
        padding: 10px 35px;
        font-size: 0.9rem;
    }
}

/* ===================================================================
   5. 메인 하단 방문예약 안내 및 퀵 배너 섹션 (아이파킹 스타일)
   ================================================================== */
.main-visit-banner-section {
    background-color: #0b0f19;
    /* 배경 이미지가 없거나 업로드 전일 때 노출되는 기본색 */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    /* 오버레이 컨트롤용 */
    padding: 160px 20px;
    width: 100%;
}

/* 이미지를 깔았을 때 글자가 눈에 묻히지 않도록 어둡게 깔아주는 보정 오버레이 레이어 추가 */
.main-visit-banner-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 15, 25, 0.75);
    /* 이미지가 있을 때 가독성을 위해 75% 어둡게 마스킹 */
    z-index: 1;
}

/* 내부에 배치된 실제 텍스트와 박스 래퍼가 마스킹 레이어 위로 올라오도록 설정 */
.visit-banner-wrap {
    position: relative;
    z-index: 2;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

/* 왼쪽: 텍스트 스타일 그룹 */
.visit-banner-text {
    flex: 1;
    color: #fff;
}

.visit-banner-text .section-title {
    font-size: 1.3rem;
    color: #94a3b8;
    margin-bottom: 20px;
    letter-spacing: 3px;
    font-weight: 600;
}

.visit-banner-text .banner-headline {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 30px;
    word-break: keep-all;
}

.visit-banner-text .banner-headline span {
    color: #ef4444;
    /* 포인트 컬러 레드 적용 */
}

.visit-banner-text .banner-subtext {
    font-size: 18px;
    color: #e4e4e4;
    line-height: 1.8;
    word-break: keep-all;
}

/* 오른쪽: 박스 레이아웃 그룹 */
.visit-banner-boxes {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 680px;
}

/* 공통 박스 인프라 */
.quick-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 40px;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-sizing: border-box;
}

/* 첫 번째 박스 (대표번호 테마) */
.contact-box {
    background: #ef4444;
    color: #fff;
}

.contact-box:hover {
    background: #dc2626;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(239, 68, 68, 0.25);
}

/* 두 번째 박스 (이동 배너 테마) */
.link-box {
    background: #1e293b;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.link-box:hover {
    background: #334155;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* 내부 타이포그래피 정돈 */
.box-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-box .box-num {
    font-size: 2.3rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    font-family: 'Cinzel', sans-serif;
}

.link-box .box-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.quick-box .box-desc {
    font-size: 0.95rem;
    opacity: 0.85;
}

/* 원형 아이콘 프레임 */
.quick-box .box-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.quick-box .box-icon svg {
    width: 24px;
    height: 24px;
}


@media (max-width: 1400px) {
    .visit-banner-text .banner-headline {
        font-size: 28px;
    }

    .visit-banner-text .banner-subtext {
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    .main-visit-banner-section {
        padding: 80px 20px;
    }

    .visit-banner-wrap {
        flex-direction: column;
        gap: 50px;
    }

    .visit-banner-text,
    .visit-banner-boxes {
        width: 100%;
        max-width: 100%;
    }

    .visit-banner-text {
        text-align: center;
    }

    .visit-banner-text .banner-subtext {
        font-size: 14px;
    }

    .visit-banner-text .banner-headline {
        font-size: 22px;
    }

    .quick-box {
        padding: 25px 25px;
    }

    .contact-box .box-num {
        font-size: 1.8rem;
    }

    .link-box .box-title {
        font-size: 1.25rem;
    }

    .quick-box .box-desc {
        font-size: 0.85rem;
    }

    .quick-box .box-icon {
        width: 44px;
        height: 44px;
    }

    .quick-box .box-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* ===================================================================
   6. 메인 하단 자주묻는질문 (3:7 고급 비대칭 스플릿 및 전역 와이드 배경 테마)
   ================================================================== */
.main-faq-section {
    background: linear-gradient(to bottom, #ffffff 50%, #f4efe6 50%);
    /* 기본 배경 바탕색 */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    /* 오버레이 연산의 기준점 활성화 */
    padding: 160px 20px;
    width: 100%;
    z-index: 1;
}

/* ★ 전체 바탕 이미지를 등록했을 때 글자 가독성이 박살나는 현상을 막는 딤 마스킹 오버레이 장치 */
.main-faq-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* 3:7 그리드 가동 래퍼 */
.faq-split-container {
    max-width: 1700px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 3fr 7fr;
    gap: 60px;
    align-items: stretch;
}

/* [왼쪽 영역] 타이틀 및 세로형 비주얼 프레임 */
.faq-left-visual {
    position: relative;
    border-radius: 16px;
    background-color: #0f172a;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 40px;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
}

.faq-left-visual::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.75) 100%);
    z-index: 1;
}

.faq-visual-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.faq-left-visual .section-title {
    font-size: 3.5rem;
    color: #ffffff;
    margin: 0 0 5px 0;
}

.faq-left-visual .faq-subtitle {
    font-size: 1.4rem;
    color: #bf9b62;
    font-weight: 700;
    margin-bottom: 30px;
}

.faq-left-visual .faq-lead-text {
    font-size: 16px;
    color: #cbd5e1;
    line-height: 1.7;
    word-break: keep-all;
}

/* [오른쪽 영역] 아코디언 리스트 프레임 */
.faq-right-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 15px;
    overflow: hidden;
}

.faq-list-wrap {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
    background: #ffffff;
    /* 전역 배경이 화려해도 리스트 자체는 흰색 박스로 선명하게 분리 고정 */
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary {
    list-style: none;
}

.faq-trigger {
    display: flex;
    align-items: center;
    padding: 26px 30px;
    cursor: pointer;
    position: relative;
    user-select: none;
    gap: 20px;
    z-index: 10;
}

.faq-trigger:hover {
    background-color: #f8fafc;
}

.faq-trigger .icon-q {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    flex-shrink: 0;
}

.faq-trigger .faq-q-text {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    word-break: keep-all;
    line-height: 1.4;
}

.faq-trigger .faq-arrow-icon {
    width: 24px;
    height: 24px;
    color: #94a3b8;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.faq-trigger .faq-arrow-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.faq-item[open] .faq-trigger {
    background-color: #f8fafc;
}

.faq-item[open] .faq-trigger .faq-arrow-icon {
    transform: rotate(180deg);
    color: #0f172a;
}

/* 스르륵 슬라이딩 애니메이션 연산 */
.faq-body {
    background-color: #f8fafc;
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item[open] .faq-body {
    grid-template-rows: 1fr;
}

.faq-content-inside {
    min-height: 0;
    overflow: hidden;
}

.faq-content {
    padding: 30px 30px 40px 30px;
    display: flex;
    gap: 20px;
    border-top: 1px dashed #e2e8f0;
    animation: faqFadeIn 0.4s ease forwards;
}

.faq-content .icon-a {
    font-size: 24px;
    font-weight: 800;
    color: #bf9b62;
    flex-shrink: 0;
}

.faq-content .faq-a-text {
    flex: 1;
    font-size: 17px;
    color: #475569;
    line-height: 1.7;
    word-break: keep-all;
}

@keyframes faqFadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* 태블릿 및 모바일 반응형 밸런싱 */
@media (max-width: 1400px) {
    .faq-split-container {
        gap: 30px;
    }

    .faq-trigger .faq-q-text {
        font-size: 17px;
    }
}

@media (max-width: 991px) {
    .main-faq-section {
        padding: 80px 15px;
    }

    .faq-split-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faq-left-visual {
        padding: 40px 30px;
        min-height: 220px;
    }

    .faq-left-visual .section-title {
        font-size: 2.8rem;
    }

    .faq-left-visual .faq-subtitle {
        margin-bottom: 15px;
    }

    .faq-trigger {
        padding: 20px 15px;
        gap: 12px;
    }

    .faq-trigger .icon-q,
    .faq-content .icon-a {
        font-size: 20px;
    }

    .faq-trigger .faq-q-text {
        font-size: 15px;
    }

    .faq-content {
        padding: 20px 15px 25px 15px;
        gap: 12px;
    }

    .faq-content .faq-a-text {
        font-size: 15px;
        line-height: 1.6;
    }
}



/* ===================================================================
   팝업
   ================================================================== */
.integrated-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 10000;

    display: none;
    /* 기본 상태는 숨김 */
    opacity: 0;
    transition: opacity 0.3s ease;

    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* ★ 수동 트리거 버저닝에 의해 화면에 표출시키는 핵심 액티브 클래스 */
.integrated-popup-overlay.show-popup {
    display: flex !important;
    opacity: 1;
}

/* 신규 수동 팝업 버튼 포인트 컬러링 (선택사항) */
.nav-popup-trigger .m-nav-link {
    background: #1e293b;
    color: #38bdf8;
}

.nav-popup-trigger .m-icon-box {
    color: #38bdf8;
}

.pc-sidebar-item.item-popup-trigger:hover {
    color: #0ea5e9;
}

.pc-sidebar-item.item-popup-trigger:hover .pc-icon-box {
    color: #0ea5e9;
}

.integrated-popup-window {
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-width: calc(100vw - 40px);
}

/* [PC 전용 스타일] 팝업창들이 가로로 정렬되는 컨테이너 */
.popup-pc-flex-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8fafc;
    /* 팝업 섀시 내부 은은한 배경색 */
    max-height: 75vh;
    overflow-y: auto;
}

.popup-pc-item {
    width: 320px;
    /* PC 개별 팝업 가로폭 고정 규격 */
    flex-shrink: 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    background: #fff;
}

.popup-pc-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* [모바일 전용 스타일] 스와이프 슬라이더 구조 */
.popup-mobile-slider-content {
    display: none;
    /* 기본 숨김 */
    position: relative;
    width: 320px;
    /* 모바일 적정 고정 레이아웃 */
    overflow: hidden;
}

.popup-mobile-track {
    display: flex;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

.popup-mobile-slide {
    width: 100%;
    flex-shrink: 0;
    background: #fff;
}

.popup-mobile-slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* ★ [핵심요청] 푸르지오 스타일 통합 하단 바 컨트롤 영역 */
.integrated-popup-footer {
    background: #1e293b;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #334155;
    user-select: none;
}

/* 오늘하루 보지않기 체크박스 세트 */
.popup-cookie-label {
    color: #cbd5e1;
    font-size: 0.85rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.popup-cookie-label input[type="checkbox"] {
    accent-color: #0ea5e9;
    /* 체크박스 테마 컬러 매핑 */
    cursor: pointer;
}

/* 우측 제어 그룹 (모바일 페이징 인디케이터 + 닫기버튼) */
.popup-footer-right-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* 모바일용 현재 페이지 번호 지시자 (1 / 2) */
.popup-mobile-page-indicator {
    display: none;
    /* PC에서는 숨김 */
    color: #38bdf8;
    font-size: 0.85rem;
    font-family: 'Pretendard', sans-serif;
    background: rgba(0, 0, 0, 0.3);
    padding: 2px 8px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

/* 통합 닫기 버튼 */
.popup-close-master-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: bold;
    cursor: pointer;
    padding: 4px 8px;
    transition: color 0.2s ease;
}

.popup-close-master-btn:hover {
    color: #38bdf8;
}

/* 반응형 스위칭 중단점 처리 */
@media (max-width: 991px) {

    /* PC 컨테이너 파괴 및 모바일 전용 컨테이너 활성화 */
    .popup-pc-flex-content {
        display: none !important;
    }

    .popup-mobile-slider-content {
        display: block;
    }

    .popup-mobile-page-indicator {
        display: inline-block;
    }

    .integrated-popup-window {
        max-width: 320px;
    }
}