/**
 * 시설안내 — 지점과 공간을 한 화면씩 크게 보여 준다.
 * 브랜드 색(민트 #00CCC6 / 블루 #067FFF)과 심해 톤(#0b1622)을 그대로 쓴다.
 */

.fc-wrap {
    width: 100%;
    max-width: 1560px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ── 히어로 ───────────────────────────────── */
.fc-hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 82vh;
    padding: 170px 0 90px;
    background: #0b1622;
    overflow: hidden;
}

/* 실제 공간 사진을 옅게 깔아, 글보다 공간이 먼저 스치게 한다 */
.fc-hero-strip {
    position: absolute;
    inset: 0;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    z-index: 0;
}

.fc-hero-strip span {
    display: block;
    background-size: cover;
    background-position: center;
    opacity: .3;
    filter: grayscale(.3);
}

.fc-hero-veil {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(100deg, rgba(11, 22, 34, .96) 28%, rgba(11, 22, 34, .58) 70%, rgba(11, 22, 34, .8)),
        linear-gradient(180deg, rgba(11, 22, 34, .7), rgba(11, 22, 34, .2) 40%, rgba(11, 22, 34, .9));
}

.fc-hero .underwater-environment {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.fc-hero .bubble {
    position: absolute;
    bottom: -80px;
    border-radius: 50%;
    background: rgba(0, 204, 198, .16);
    box-shadow: inset 0 0 10px rgba(255, 255, 255, .3);
    animation: fcRise 14s infinite ease-in;
}

.fc-hero .bubble-1 { width: 34px; height: 34px; left: 12%; animation-duration: 13s; }
.fc-hero .bubble-3 { width: 54px; height: 54px; left: 47%; animation-duration: 18s; animation-delay: 3s; }
.fc-hero .bubble-5 { width: 22px; height: 22px; left: 78%; animation-duration: 11s; animation-delay: 6s; }

@keyframes fcRise {
    0% { transform: translateY(0) scale(.6); opacity: 0; }
    20% { opacity: .5; }
    100% { transform: translateY(-92vh) scale(1.3); opacity: 0; }
}

.fc-hero-inner { position: relative; z-index: 3; }

.fc-eyebrow {
    margin: 0 0 18px;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--point-mint);
}

.fc-hero-title {
    margin: 0;
    font-size: clamp(2.6rem, 6.4vw, 5.4rem);
    font-weight: 900;
    line-height: 1.14;
    letter-spacing: -.045em;
    color: #fff;
}

.fc-hero-title span {
    background: linear-gradient(96deg, var(--point-mint), #7fe6ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.fc-hero-lead {
    max-width: 640px;
    margin: 26px 0 0;
    font-size: 1.06rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, .68);
    word-break: keep-all;
}

.fc-figures {
    display: flex;
    gap: 54px;
    margin-top: 46px;
}

.fc-fig {
    display: flex;
    align-items: baseline;
    gap: 9px;
}

.fc-fig strong {
    font-size: 2.9rem;
    font-weight: 900;
    letter-spacing: -.05em;
    color: var(--point-mint);
}

.fc-fig span {
    font-size: .92rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .6);
}

/* 스크롤 유도 */
.fc-scroll {
    position: absolute;
    left: 50%;
    bottom: 26px;
    z-index: 3;
    width: 24px;
    height: 38px;
    margin-left: -12px;
    border: 2px solid rgba(255, 255, 255, .35);
    border-radius: 999px;
}

.fc-scroll span {
    position: absolute;
    top: 7px;
    left: 50%;
    width: 4px;
    height: 7px;
    margin-left: -2px;
    border-radius: 999px;
    background: var(--point-mint);
    animation: fcScroll 1.8s infinite;
}

@keyframes fcScroll {
    0% { transform: translateY(0); opacity: 0; }
    30% { opacity: 1; }
    100% { transform: translateY(14px); opacity: 0; }
}

/* ── 본문 ─────────────────────────────────── */
.facilities-section {
    background: #f6fbfc;
}

.facilities-empty {
    padding: 120px 0;
    text-align: center;
    color: #7b8a92;
}

/* 지점 전환 — 스크롤을 따라와 어느 지점을 보는 중인지 놓치지 않게 한다 */
.fc-nav {
    position: sticky;
    top: 78px;
    z-index: 20;
    padding: 16px 0;
    border-bottom: 1px solid #e3edf0;
    background: rgba(246, 251, 252, .92);
    backdrop-filter: blur(10px);
}

.fc-nav.is-single { display: none; }

.fc-nav-inner {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.facility-tab {
    padding: 11px 26px;
    border: 1px solid #dbe4e8;
    border-radius: 999px;
    background: #fff;
    font-family: inherit;
    font-size: .95rem;
    font-weight: 700;
    color: #55636b;
    cursor: pointer;
    transition: border-color .2s, background .2s, color .2s;
}

.facility-tab:hover {
    border-color: var(--point-mint);
    color: var(--point-mint-deep);
    background: #f2fbfb;
}

.facility-tab.active {
    border-color: var(--point-mint);
    background: var(--point-mint);
    color: #05221f;
}

.facility-content { display: none; }
.facility-content.active { display: block; }

/* 지점 머리 */
.fc-branch-head {
    position: relative;
    padding: 110px 40px 70px;
    text-align: center;
}

.fc-branch-no {
    display: block;
    font-size: 5.6rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.06em;
    color: rgba(0, 204, 198, .18);
}

.fc-branch-title {
    margin: -28px 0 0;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    letter-spacing: -.045em;
    color: #0d1f2b;
}

.fc-branch-name {
    margin: 12px 0 0;
    font-size: .92rem;
    font-weight: 700;
    letter-spacing: .04em;
    color: var(--point-mint-deep);
}

.fc-branch-desc {
    max-width: 720px;
    margin: 22px auto 0;
    font-size: 1.02rem;
    line-height: 1.85;
    color: #55636b;
    word-break: keep-all;
}

/* ── 공간 ─────────────────────────────────── */
.fc-space { padding: 46px 0; }

.fc-space-inner {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 70px;
}

/* 짝수 블록은 사진을 왼쪽으로 넘긴다 */
.fc-space.is-reverse .fc-space-text { order: 2; }
.fc-space.is-reverse .fc-space-photo { order: 1; }

.fc-space.no-image .fc-space-inner {
    grid-template-columns: 1fr;
    max-width: 900px;
    text-align: center;
}

.fc-space-title {
    margin: 0;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 900;
    letter-spacing: -.04em;
    color: #0d1f2b;
}

.fc-space-badge {
    display: inline-block;
    margin-top: 12px;
    padding: 5px 13px;
    border-radius: 999px;
    background: rgba(6, 127, 255, .1);
    font-size: .78rem;
    font-weight: 800;
    color: var(--point-blue);
}

.fc-space-desc {
    margin: 20px 0 0;
    font-size: 1.02rem;
    line-height: 1.85;
    color: #55636b;
    word-break: keep-all;
}

.fc-space-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.fc-space.no-image .fc-space-features { justify-content: center; }

.fc-space-features li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 15px;
    border: 1px solid #dcebee;
    border-radius: 999px;
    background: #fff;
    font-size: .88rem;
    font-weight: 600;
    color: #3d4b53;
}

.fc-feature-icon {
    width: 17px;
    height: 17px;
    object-fit: contain;
}

/* 사진 — 크게, 모서리를 둥글게, 뒤에 민트 판을 살짝 어긋나게 깐다 */
.fc-space-photo {
    position: relative;
    aspect-ratio: 16 / 10;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 34px 70px rgba(13, 45, 60, .16);
}

.fc-space-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(5, 25, 35, .28));
    pointer-events: none;
}

.fc-space-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(.2, .8, .3, 1);
}

.fc-space:hover .fc-space-photo img { transform: scale(1.04); }

/* ── 지점 정보 ────────────────────────────── */
.fc-contact {
    margin: 70px 0 0;
    padding: 78px 0;
    background: #0b1622;
}

.fc-contact-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 50px;
}

.fc-contact-col h4 {
    margin: 0 0 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .14em;
    color: var(--point-mint);
}

.fc-contact-main {
    margin: 0;
    font-size: 1.14rem;
    font-weight: 700;
    line-height: 1.6;
    color: #fff;
    word-break: keep-all;
}

.fc-contact-main a { color: #fff; }
.fc-contact-main a:hover { color: var(--point-mint); }

.fc-contact-sub {
    margin: 10px 0 0;
    font-size: .88rem;
    color: rgba(255, 255, 255, .48);
}

.fc-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 18px;
    padding: 9px 17px;
    border: 1px solid rgba(0, 204, 198, .45);
    border-radius: 999px;
    font-size: .85rem;
    font-weight: 700;
    color: var(--point-mint);
    transition: background .2s;
}

.fc-contact-link::after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
}

.fc-contact-link:hover { background: rgba(0, 204, 198, .14); }

.fc-hours ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.fc-hours li {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    font-size: .92rem;
    color: rgba(255, 255, 255, .8);
}

.fc-hours li:last-child { border-bottom: 0; }
.fc-hours .day { font-weight: 700; color: rgba(255, 255, 255, .55); }
.fc-hours li.is-closed .time { color: rgba(255, 255, 255, .35); }

/* ── 다음 걸음 ────────────────────────────── */
.fc-next {
    padding: 110px 0;
    background: linear-gradient(140deg, #067fff, #00ccc6);
    text-align: center;
}

.fc-next-label {
    margin: 0 0 16px;
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .7);
}

.fc-next-title {
    margin: 0;
    font-size: clamp(1.9rem, 4vw, 3.1rem);
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: -.04em;
    color: #fff;
}

.fc-next-title span { color: #04252a; }

.fc-next-desc {
    margin: 20px 0 0;
    font-size: 1.02rem;
    color: rgba(255, 255, 255, .82);
}

.fc-next-btns {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 36px;
}

.fc-btn {
    padding: 15px 32px;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 999px;
    background: transparent;
    font-family: inherit;
    font-size: .98rem;
    font-weight: 800;
    color: #fff;
    cursor: pointer;
    transition: background .25s, color .25s;
}

.fc-btn:hover { background: rgba(255, 255, 255, .16); }

.fc-btn-main {
    border-color: #fff;
    background: #fff;
    color: #04252a;
}

.fc-btn-main:hover { background: rgba(255, 255, 255, .88); }

/* ── 반응형 ───────────────────────────────── */
@media (max-width: 1100px) {
    .fc-space-inner {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    /* 좁아지면 사진이 늘 글 아래로 간다 */
    .fc-space.is-reverse .fc-space-text,
    .fc-space.is-reverse .fc-space-photo { order: 0; }
}

@media (max-width: 768px) {
    .fc-wrap { padding: 0 20px; }
    .fc-hero { min-height: 74vh; padding: 140px 0 70px; }
    .fc-hero-strip span:nth-child(n+4) { display: none; }
    .fc-figures { gap: 30px; margin-top: 34px; }
    .fc-fig strong { font-size: 2.2rem; }
    .fc-nav { top: 62px; }
    .fc-nav-inner { justify-content: flex-start; overflow-x: auto; }
    .facility-tab { flex: 0 0 auto; }
    .fc-branch-head { padding: 70px 20px 46px; }
    .fc-branch-no { font-size: 3.8rem; }
    .fc-branch-title { margin-top: -18px; }
    .fc-space { padding: 30px 0; }
    .fc-space-photo { border-radius: 22px; }
    .fc-contact { padding: 56px 0; }
    .fc-contact-inner { gap: 34px; }
    .fc-next { padding: 76px 0; }
    .fc-next-btns { flex-direction: column; }
}
