/* ============================================================
   50K Gangdong Glanz Branch
   ============================================================ */

.glanz-page-wrapper {
    --glanz-orange: var(--primary-orange, #E67E22);
    --glanz-navy: #1a2a3a;
    --glanz-ivory: #faf8f5;
    --glanz-muted: #5f6875;
    --glanz-line: #ece7df;
    --glanz-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow-x: hidden;
    background: #fff;
    color: var(--glanz-navy);
    font-family: "Pretendard", "Noto Sans KR", sans-serif;
    line-height: 1.7;
}

.glanz-container {
    width: 100%;
    max-width: var(--container-width, 1200px);
    margin: 0 auto;
    padding: 0 20px;
}

.glanz-pc-only {
    display: block;
}

.glanz-section-header {
    max-width: 820px;
    margin: 0 auto 58px;
    text-align: center;
}

.glanz-section-header h2 {
    margin: 0;
    color: var(--glanz-navy);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 850;
    line-height: 1.35;
}

.glanz-section-header h2 strong,
.glanz-hero-content h1 span,
.glanz-checklist-card h3 strong {
    color: var(--glanz-orange);
}

.glanz-section-header p {
    margin: 16px 0 0;
    color: var(--glanz-muted);
}

.glanz-tag,
.glanz-eyebrow {
    display: block;
    color: var(--glanz-orange);
    font-size: 0.85rem;
    font-weight: 850;
    letter-spacing: 0.14em;
}

.glanz-tag {
    margin-bottom: 14px;
}

.glanz-hero {
    position: relative;
    min-height: 76vh;
    display: flex;
    align-items: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.glanz-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(rgba(26, 42, 58, 0.5), rgba(26, 42, 58, 0.5)),
        url("/static/img/sections/marquee/marquee.002.jpeg") center/cover;
}

.glanz-hero-bg::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(180deg, rgba(26, 42, 58, 0.16), rgba(26, 42, 58, 0.56)),
        linear-gradient(90deg, rgba(26, 42, 58, 0.22), rgba(26, 42, 58, 0.22));
}

.glanz-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.glanz-hero-content {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
    padding: 126px 0 94px;
}

.glanz-hero-content h1 {
    margin: 20px 0 26px;
    font-size: clamp(2.8rem, 5.2vw, 4.5rem);
    font-weight: 850;
    line-height: 1.15;
}

.glanz-hero-content p {
    margin: 0 0 42px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.18rem;
    font-weight: 550;
}

.glanz-action-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.glanz-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 40px;
    border-radius: var(--radius-button, 980px);
    font-weight: 850;
    text-decoration: none;
    transition: var(--glanz-transition);
}

.glanz-btn-primary {
    background: var(--glanz-orange);
    color: #fff;
}

.glanz-btn-ghost {
    border: 1px solid rgba(255, 255, 255, 0.72);
    color: #fff;
}

.glanz-btn:hover,
.glanz-map-link:hover {
    transform: translateY(-4px);
}

.glanz-btn-primary:hover {
    box-shadow: 0 12px 24px rgba(230, 126, 34, 0.28);
}

.glanz-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.94);
    color: var(--glanz-navy);
}

.glanz-stats {
    padding: 42px 0;
    background: var(--glanz-navy);
    color: #fff;
}

.glanz-stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 0;
    text-align: center;
}

.glanz-stat-node strong {
    display: block;
    margin-bottom: 6px;
    color: var(--glanz-orange);
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1.25;
}

.glanz-stat-node span {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 650;
}

.glanz-revitalize,
.glanz-checklist,
.glanz-access {
    padding: 112px 0;
    background: #fff;
}

.glanz-services {
    padding: 112px 0;
    background: var(--glanz-ivory);
}

.glanz-code-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.glanz-code-item {
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-self: center;
    border-radius: 50%;
    background: var(--glanz-ivory);
    text-align: center;
    transition: var(--glanz-transition);
}

.glanz-code-item:hover {
    background: var(--glanz-orange);
    color: #fff;
    transform: translateY(-6px);
}

.glanz-code-item span {
    font-size: 1.1rem;
    font-weight: 850;
}

.glanz-code-item p {
    margin: 4px 0 0;
    font-size: 0.8rem;
    opacity: 0.78;
}

.glanz-revitalize-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    margin-top: 58px;
}

.glanz-rev-card {
    padding: 42px 30px;
    border: 1px solid var(--glanz-line);
    border-radius: 34px;
    background: var(--glanz-ivory);
    text-align: center;
    transition: var(--glanz-transition);
}

.glanz-rev-card:hover {
    border-color: rgba(230, 126, 34, 0.45);
    background: #fff;
    box-shadow: 0 20px 50px rgba(26, 42, 58, 0.08);
    transform: translateY(-10px);
}

.glanz-rev-icon {
    margin-bottom: 18px;
    font-size: 3rem;
    line-height: 1;
}

.glanz-rev-card h4 {
    margin: 0 0 6px;
    color: var(--glanz-navy);
    font-size: 1.28rem;
    font-weight: 850;
}

.glanz-rev-card span {
    display: block;
    margin-bottom: 18px;
    color: var(--glanz-orange);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.glanz-rev-card p {
    margin: 0;
    color: var(--glanz-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    word-break: keep-all;
}

.glanz-activity-banner {
    margin-top: 48px;
    padding: 54px;
    border-radius: 34px;
    background: var(--glanz-navy);
    color: #fff;
    text-align: center;
}

.glanz-activity-banner h3 {
    margin: 0;
    font-size: clamp(1.55rem, 3vw, 2.2rem);
    font-weight: 850;
}

.glanz-activity-banner h3 strong {
    color: var(--glanz-orange);
}

.glanz-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 28px 0;
}

.glanz-tag-cloud span {
    padding: 10px 20px;
    border: 1px solid rgba(230, 126, 34, 0.34);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--glanz-orange);
    font-size: 0.9rem;
    font-weight: 800;
}

.glanz-activity-banner p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}

.glanz-activity-banner p strong {
    color: #fff;
}

.glanz-service-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 64px;
    align-items: center;
}

.glanz-service-list,
.glanz-facility-area {
    min-width: 0;
}

.glanz-facility-area {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.glanz-area-title h2 {
    margin: 0;
    color: var(--glanz-navy);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 850;
}

.glanz-area-title p {
    margin: 8px 0 34px;
    color: var(--glanz-orange);
    font-weight: 850;
    letter-spacing: 0.08em;
}

.glanz-service-box {
    display: grid;
    gap: 24px;
}

.glanz-service-item {
    padding-left: 20px;
    border-left: 4px solid var(--glanz-orange);
}

.glanz-service-item h4 {
    margin: 0 0 8px;
    color: var(--glanz-navy);
    font-size: 1.18rem;
    font-weight: 850;
}

.glanz-service-item p {
    margin: 0;
    color: var(--glanz-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

.glanz-facility-slider {
    width: 100%;
    max-width: 100%;
    height: 360px;
    border-radius: var(--radius-card, 24px);
    background:
        linear-gradient(135deg, rgba(230, 126, 34, 0.12), rgba(250, 248, 245, 0.62)),
        url("/static/img/sections/marquee/marquee.003.jpeg") center/cover;
    overflow: hidden;
    box-shadow: 0 20px 44px rgba(26, 42, 58, 0.08);
}

.glanz-facility-slider img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.glanz-special-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.glanz-special-tags span {
    padding: 7px 15px;
    border-radius: 999px;
    background: #fff;
    color: var(--glanz-orange);
    font-size: 0.86rem;
    font-weight: 800;
}

.glanz-checklist-card {
    padding: 58px;
    border-radius: 30px;
    background: var(--glanz-navy);
    color: #fff;
    text-align: center;
}

.glanz-checklist-card h3 {
    margin: 0;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 850;
}

.glanz-check-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 38px 0;
    text-align: left;
}

.glanz-check-item {
    position: relative;
    padding: 18px 20px 18px 50px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    font-weight: 700;
}

.glanz-check-item::before {
    position: absolute;
    left: 20px;
    color: var(--glanz-orange);
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.glanz-checklist-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
}

.glanz-access-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.glanz-way-box {
    padding: 30px;
    border-radius: var(--radius-card, 24px);
    background: var(--glanz-ivory);
}

.glanz-way-box strong {
    display: block;
    margin-bottom: 12px;
    color: var(--glanz-orange);
    font-size: 1.16rem;
    font-weight: 850;
}

.glanz-way-box p {
    margin: 0;
    color: var(--glanz-muted);
}

.glanz-map-box {
    margin-top: 42px;
}

.glanz-map-placeholder {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border-radius: var(--radius-card, 24px);
    background:
        linear-gradient(135deg, rgba(26, 42, 58, 0.05), rgba(230, 126, 34, 0.08)),
        #f1f2f4;
    color: var(--glanz-navy);
    text-align: center;
}

.glanz-map-placeholder i {
    color: var(--glanz-orange);
    font-size: 2rem;
}

.glanz-map-placeholder span {
    font-weight: 850;
}

.glanz-map-placeholder.is-loaded {
    display: block;
    min-height: 400px;
}

.glanz-map-placeholder.is-loaded .glanz-map-fallback {
    display: none;
}

.glanz-map-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 22px;
    margin-top: 24px;
}

.glanz-map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--glanz-navy);
    font-weight: 850;
    text-decoration: none;
    transition: var(--glanz-transition);
}

.glanz-map-link i {
    color: var(--glanz-orange);
    font-size: 0.85rem;
}

@media (max-width: 1024px) {
    .glanz-stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .glanz-code-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .glanz-service-grid,
    .glanz-revitalize-grid,
    .glanz-check-grid,
    .glanz-access-grid {
        grid-template-columns: 1fr;
    }

    .glanz-facility-area {
        justify-self: stretch;
    }
}

@media (max-width: 768px) {
    .glanz-pc-only {
        display: none;
    }

    .glanz-hero {
        min-height: 74vh;
        align-items: flex-end;
    }

    .glanz-hero-content {
        padding: 144px 0 54px;
    }

    .glanz-hero-content h1 {
        font-size: 2.65rem;
    }

    .glanz-action-row {
        flex-direction: column;
        align-items: stretch;
    }

    .glanz-btn {
        width: 100%;
        min-height: 54px;
    }

    .glanz-stats-bar,
    .glanz-code-grid {
        grid-template-columns: 1fr;
    }

    .glanz-revitalize,
    .glanz-services,
    .glanz-checklist,
    .glanz-access {
        padding: 82px 0;
    }

    .glanz-rev-card,
    .glanz-activity-banner {
        padding: 34px 22px;
        border-radius: 26px;
    }

    .glanz-checklist-card {
        padding: 40px 22px;
    }

    .glanz-facility-slider {
        height: auto;
        min-height: 0;
        aspect-ratio: 4 / 3;
        border-radius: 20px;
    }

    .glanz-map-placeholder {
        min-height: 320px;
        height: 320px;
    }
}
