@font-face {
    font-family: 'NanumSquareNeo';
    src: url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumSquareNeo/NanumSquareNeoTTF-bRg.eot);
    src: url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumSquareNeo/NanumSquareNeoTTF-bRg.eot?#iefix) format("embedded-opentype"), url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumSquareNeo/NanumSquareNeoTTF-bRg.woff) format("woff"), url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumSquareNeo/NanumSquareNeoTTF-bRg.ttf) format("truetype");
}

BODY,TD,input,DIV,form,a,p,span,TEXTAREA,center,pre,blockquote {font-family:'NanumSquareNeo', sans-serif;}
		
		/* 기본 초기화 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Noto Sans KR', 'Pretendard', sans-serif;
            -webkit-font-smoothing: antialiased;
        }

        body {
            background-color: #ffffff;
            overflow-x: hidden;
        }

        /* 로딩 애니메이션 */
        @keyframes revealUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .reveal-wrap {
            opacity: 0;
            animation: revealUp 0.9s cubic-bezier(0.25, 1, 0.5, 1) forwards;
        }

        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }
        .delay-5 { animation-delay: 0.5s; }
        .delay-6 { animation-delay: 0.6s; }

        .wrapper {
            width: 100%;
            background-color: #ffffff;
            padding: 40px 0;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 10px;
        }

        /* 헤더 영역 */
        .header-area {
            text-align: center;
            margin-bottom: 50px;
        }

        .logo-img {
            max-width: 250px;
            margin-bottom: 30px; /* 로고와 슬로건 사이 공간 확보 */
        }

        /* 슬로건 박스 - 호버 시 상승 */
        .slogan-box {
            background-color: #FDF5E6;
            border-radius: 15px;
            padding: 30px 20px;
            margin-bottom: 60px;
            width: 100%;
            border: 1px solid #f4e4c6;
            transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                        border-color 0.4s ease, 
                        box-shadow 0.4s ease;
            cursor: default;
        }

        .slogan-box:hover {
            transform: translateY(-5px);
            border-color: #b6a179;
            box-shadow: 0 15px 35px rgba(0,0,0,0.06);
        }

        .main-quote {
            font-family: 'Georgia', serif;
            font-style: italic;
            font-size: 26px;
            color: #222;
            letter-spacing: 0.5px;
        }

.contact-title {
    font-size: 24px;         /* 버튼에 적절한 크기로 조정 */
    font-weight: 700;
    color: #333;
    background-color: #FDF5E6;  /* 배경 하얀색 */
    border: 1px solid #f4e4c6;  /* 테두리 2px 진한 회색 */
    border-radius: 10px;     /* 둥근 버튼 형태 */
    padding: 12px 40px;      /* 버튼 내부 여백 */
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: default;         /* 제목용이므로 기본 커서, 클릭용이라면 pointer */
    transition: all 0.3s ease;
    margin-bottom: 25px;
}

/* 마우스 오버 시 그림자 효과 */
.contact-title:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* 테두리 밖으로 부드러운 그림자 */
    border-color: #b6a179;
    transform: translateY(-2px); /* 살짝 떠오르는 느낌 추가 (선택사항) */
}

        .info-text {
            font-size: 16px;
            color: #555;
            line-height: 1.7;
        }

        /* 카드 그리드 */
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin-top: 50px;
        }

        /* 카드 박스 모션 */
        .contact-card {
            background: #ffffff;
            border-radius: 20px;
            text-align: center;
            border: 2px solid #b6a179;
            box-shadow: 0 8px 20px rgba(0,0,0,0.02);
            position: relative;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            min-height: 430px;
            cursor: pointer;
            transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), 
                        border-color 0.5s ease, 
                        box-shadow 0.5s ease;
        }

        .contact-card:hover {
            transform: translateY(-10px);
            border-color: #7c5c1e;
            box-shadow: 0 30px 60px rgba(0,0,0,0.12);
        }

        .card-inner-top { padding: 35px 20px 25px; }

        /* 아이콘 확대 모션 */
        .icon-box {
            width: 60px;
            height: 60px;
            margin: 0 auto 5px;
            transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .icon-box img { width: 100%; height: auto; }

        .contact-card:hover .icon-box { transform: scale(1.15); }

        /* 타이틀 배경 포인트 */
        .card-category {
            background-color: #FDF5E6;
            width: 100%;
            padding: 22px 0;
            font-size: 22px;
            font-weight: 700;
            color: #222;
            margin-bottom: 25px;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }

        .card-content {
            padding: 0 10px 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        .card-highlight {
            font-size: 19px;
            color: #111;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .card-desc { font-size: 16px; color: #777; line-height: 1.7; }

        .btn-link {
            width: 165px; height: 50px;
            background-color: #7c5c1e; color: #fff;
            border: 2px solid #7c5c1e; border-radius: 25px;
            margin: 25px auto 0;
            display: flex; align-items: center; justify-content: center;
            text-decoration: none; font-size: 16px; font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-link:hover { background-color: transparent; color: #7c5c1e; }

        /* ★ 푸터 영역 - PC에서 좌우 분할 정렬 ★ */
        .studio-footer {
            margin-top: 50px;
            padding: 40px 0;
            border-top: 1px solid #eee;
            display: flex;
            justify-content: space-between; /* 좌우 끝으로 배치 */
            align-items: flex-start;
            flex-wrap: wrap; /* 반응형 대응 */
        }

        .footer-left {
            text-align: left; /* 이용약관 왼쪽 정렬 */
            font-size: 15px;
            color: #333;
            line-height: 1.8;
        }

        .footer-right {
            text-align: right; /* 주소 정보 오른쪽 정렬 */
            font-size: 15px;
            color: #333;
            line-height: 1.8;
        }

        .footer-left a {
            text-decoration: none;
            color: inherit;
        }

        /* 반응형: 태블릿 (1200px 이하) - 모두 가운데 정렬 */
        @media (max-width: 1200px) {
            .contact-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
            .logo-img { margin-bottom: 40px; }
            .main-quote { font-size: 22px; }
            
            .studio-footer {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .footer-left { text-align: center; margin-bottom: 20px; }
            .footer-right { text-align: center; }
        }

        /* 반응형: 모바일 (680px 이하) */
        @media (max-width: 680px) {
            .wrapper { padding: 40px 0; }
            .contact-grid { grid-template-columns: repeat(1, 1fr); }
            .logo-img { max-width: 160px; margin-bottom: 30px; }
            .main-quote { font-size: 18px; line-height: 1.5; }
            .contact-title { font-size: 20px; }
            .info-text { font-size: 13px; }
            .card-category { font-size: 26px; }
            .studio-footer { margin-top: 50px; font-size: 13px; }
            .card-highlight { font-size: 20px;}
			.card-desc { font-size: 14px; }
			.slogan-box { padding: 20px 20px; }
			.footer-left { font-size: 13px; }
			.footer-right { font-size: 13px; }


        }