body {
    margin: 0;
    color: #f2f2f2;
    font-family: "Pretendard", "Noto Sans KR", sans-serif;
}

.menu-page {
    min-height: calc(100vh - 170px);
    max-width: 1600px;
    margin: 0 auto;
    padding: 150px 80px 90px;
    box-sizing: border-box;
}

.menu-page > * {
    opacity: 0;
    transform: translateY(24px);
    animation: menuFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.menu-page > *:nth-child(1) { animation-delay: 0.08s; }
.menu-page > *:nth-child(2) { animation-delay: 0.2s; }
.menu-page > *:nth-child(3) { animation-delay: 0.32s; }
.menu-page > *:nth-child(4) { animation-delay: 0.44s; }
.menu-page > *:nth-child(5) { animation-delay: 0.56s; }
.menu-page > *:nth-child(6) { animation-delay: 0.68s; }

.menu-page h1 {
    margin: 0 0 16px;
    font-size: clamp(27px, 3.4vw, 40px);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.menu-page p {
    margin: 0;
    font-size: clamp(15px, 1.3vw, 18px);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

@keyframes menuFadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .menu-page {
        padding: 120px 20px 70px;
    }

    .menu-page h1 {
        font-size: clamp(24px, 7.2vw, 32px);
    }

    .page-heading {
        padding: 120px 20px 32px;
    }

    .page-heading h1 {
        font-size: clamp(24px, 7.2vw, 32px);
    }
}

.page-heading {
    max-width: 1600px;
    margin: 0 auto;
    padding: 150px 80px 40px;
    box-sizing: border-box;
}

.page-heading h1 {
    margin: 0;
    font-size: clamp(27px, 3.4vw, 40px);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(24px);
    animation: menuFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.08s;
}

/* ── 오시는 길 페이지 ── */
.about05-section {
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    box-sizing: border-box;
    opacity: 1;
    transform: none;
}

.about05-inner {
    width: 100%;
}

.about05-grid {
    display: grid;
    grid-template-columns: minmax(0, 380px) minmax(0, 780px);
    gap: 28px;
    align-items: end;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about05-left {
    margin-left: 0;
}

.about05-icon {
    display: block;
    max-height: 60px;
    width: auto;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 1s cubic-bezier(0.16,1,0.3,1), transform 1s cubic-bezier(0.16,1,0.3,1);
}

.about05-title {
    background: linear-gradient(90deg, #3d4148 0%, #72767e 8%, #ffffff 22%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 1s cubic-bezier(0.16,1,0.3,1), transform 1s cubic-bezier(0.16,1,0.3,1);
}

.about05-card-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 40px;
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 1s cubic-bezier(0.16,1,0.3,1), transform 1s cubic-bezier(0.16,1,0.3,1);
}

.about05-card {
    border-radius: 0;
}

.about05-address-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.about05-address-title {
    font-size: 22px;
    margin: 0;
}

.about05-copy-btn {
    padding: 4px 10px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: 0;
    color: #fff;
    font-size: 12px;
    font-family: inherit;
    cursor: pointer;
    letter-spacing: 0.03em;
    transition: background 0.2s;
}

.about05-copy-btn:hover {
    background: rgba(255,255,255,0.08);
}

.about05-address-text {
    margin: 0;
}

.about05-map {
    overflow: hidden;
    border-radius: 0;
    border: 1px solid rgba(255,255,255,0.1);
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 1s cubic-bezier(0.16,1,0.3,1), transform 1s cubic-bezier(0.16,1,0.3,1);
}

/* ── 복사 모달 ── */
#copy-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

#copy-modal-overlay.show {
    display: flex;
}

#copy-modal {
    background: #13151e;
    border: 1px solid rgba(255,255,255,0.18);
    padding: 28px 40px;
    text-align: center;
    animation: copyModalIn 0.22s cubic-bezier(0.22,1,0.36,1);
}

@keyframes copyModalIn {
    from { opacity: 0; transform: scale(0.93); }
    to   { opacity: 1; transform: scale(1); }
}

#copy-modal p {
    margin: 0 0 20px;
    color: #fff;
    font-size: 15px;
    white-space: nowrap;
}

#copy-modal button {
    padding: 7px 24px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.5);
    color: #fff;
    font-size: 13px;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s;
}

#copy-modal button:hover {
    background: rgba(255,255,255,0.08);
}}

/* ══════════════════════════════════
   회사 전경 섹션 (about05 전용)
══════════════════════════════════ */

/* 등장 애니메이션 */
.a04-anim {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1);
    transition-delay: var(--delay, 0s);
}
.a04-anim.is-visible {
    opacity: 1;
    transform: none;
}
/* 리셋 시 transition 제거 */
.a04-anim.no-anim-transition {
    transition: none !important;
}

/* 타이틀 기본 */
.a04-section-title.is-small {
    background: linear-gradient(90deg, #2a2d33 0%, #4a4f58 8%, #ffffff 22%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-size: clamp(28px, 4vw, 56px);
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 40px;
}

/* 섹션 래퍼 */
.a04-gallery-section {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 130px 0 80px;
    box-sizing: border-box;
}

.a05-shape-img {
    display: block;
    height: 60px;
    width: auto;
    object-fit: contain;
    margin: 0 auto 10px;
}

/* 갤러리 섹션 타이틀 여백 */
.a04-gallery-section .about05-title {
    width: fit-content;
    margin: 30px auto 40px;
    background: linear-gradient(90deg, #3d4148 0%, #72767e 15%, #ffffff 35%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* ── 갤러리 탭 ── */
.a04-gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.a04-tab {
    padding: 10px 22px;
    background: transparent;
    color: #ffffff;
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
    letter-spacing: 0.02em;
    border-radius: 8px;
    border: 1px solid #ffffff;
    outline: none;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.a04-tab:hover,
.a04-tab.active,
.a04-tab:focus {
    background: #ea4c38;
    color: #ffffff;
    border-color: #ea4c38;
}

/* ── 슬라이더 ── */
.a04-slider-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
}
.a04-slider-viewport {
    flex: 1;
    overflow: hidden;
    border-radius: 16px;
}
.a04-slider-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.22,1,0.36,1);
}
.a04-slide {
    flex: 0 0 100%;
    aspect-ratio: 16/9;
    background: rgba(255,255,255,0.04);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.2);
    font-size: 14px;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255,255,255,0.08);
    position: relative;
}
.a04-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* 슬라이드 하단 그라데이션 + 캡션 */
.a04-slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 72px 28px 22px;
    background: linear-gradient(to top, rgba(30,30,30,0.92) 0%, rgba(20,20,20,0.5) 55%, transparent 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.5;
    text-align: center;
    pointer-events: none;
}
.a04-slider-btn {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
    font-family: inherit;
    line-height: 1;
    padding: 0;
}
.a04-slider-btn:hover {
    background: rgba(255,255,255,0.13);
}
.a04-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}
.a04-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: background 0.2s;
}
.a04-dot.active {
    background: rgba(255,255,255,0.72);
}

/* ── 반응형 ── */
@media (max-width: 768px) {
    .a04-gallery-section { padding: 60px 0; }
    .a04-gallery-tabs { gap: 8px; }
    .a04-tab { font-size: 12px; padding: 8px 12px; }
    .a04-slider-btn { width: 36px; height: 36px; font-size: 20px; }
    .a04-slider-wrap { gap: 8px; }
}
