:root {
    --point-color: #f4d220;
    --max-width: 1280px;
}

html { overflow-x: hidden;}
*, div, p, span {word-break:keep-all;}

/* 헤더 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: blur(40px);
    z-index: 1000;
    opacity: 0;
    transform: translateY(-20px);
    animation: slideDown 0.8s ease forwards;
    animation-delay: 0.5s;
}

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    max-width: 1800px;
    margin: 0 auto;
}

/* 로고 */
.logo h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c2c2c;
    margin: 0;
    line-height: 1;
}

.logo span {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: #666;
    font-weight: 400;
    letter-spacing: 1px;
    display: block;
    margin-top: 2px;
}

.logo img {max-width:240px;}

/* 네비게이션 */
.navigation {
    flex: 1;
    display: flex;
    justify-content: center;
	padding:20px 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 70px;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 0;
}

.nav-link:hover,
.nav-link.active {
    color: #2c2c2c;
}

.nav-icon {
    font-size: 0.7rem;
    color: #999;
    transition: transform 0.3s ease;
}

.has-dropdown:hover .nav-icon {
    transform: rotate(180deg);
}

/* 드롭다운 메뉴 */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 8px 0;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: #666;
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 4px;
    margin: 0 8px;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #2c2c2c;
}

.dropdown-item.active {
    background-color: var(--point-color);
    color: #111;
}

.dropdown-item.active:hover {
    background-color: var(--point-color);
}

/* 헤더 액션 버튼들 */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-btn, .menu-btn {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.search-btn:hover, .menu-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: #2c2c2c;
}

/* 햄버거 메뉴 */
.menu-btn {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 10px;
}

.menu-btn span {
    width: 20px;
    height: 2px;
    background-color: currentColor;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.menu-btn:hover span {
    background-color: #2c2c2c;
}

/* 검색 오버레이 */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 20px;
}

.search-input {
    width: calc(100% - 90px);
    padding: 20px 60px 20px 20px;
    font-size: 1.5rem;
    border: none;
    border-radius: 8px;
    background: #ffffff;
    color: #2c2c2c;
    outline: none;
	display:inline-block;
	height:70px;
	box-shadow:none !important;
}

#sch_submit {width:80px; font-size:1.5rem; border-radius:8px; padding:20px; background:#111; color:#fff; display:inline-block; height:70px; border:0;}

.search-input::placeholder {
    color: #999;
}

@media (max-width:1200px) {
	.search-container {width:90%;}
	.search-input {font-size:1.1rem;}
}

.search-close {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.search-close:hover {
    color: #2c2c2c;
}

/* 사이드 메뉴 */
.side-menu {
    position: fixed;
    top: 0;
    right: -400px;
    width: 300px;
    height: 100vh;
    background: #ffffff;
    z-index: 2001;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.side-menu.active {
    right: 0;
}

.side-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.side-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.side-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.side-logo h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
    margin: 0;
    line-height: 1;
}

.side-logo span {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    color: #666;
    font-weight: 400;
    letter-spacing: 1px;
    display: block;
    margin-top: 2px;
}

.side-logo img {max-width:100%;}

.side-menu-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
	position:absolute; top:0; right:0;
}

.side-menu-close:hover {
    color: #2c2c2c;
}

.side-navigation {
    padding: 20px 0;
}

.side-menu-item {
    border-bottom: 1px solid #f8f9fa;
}

.side-menu-link {
    display: block;
    padding: 15px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.side-menu-link:hover {
    color: #2c2c2c;
    background-color: #f8f9fa;
}

.side-submenu {
    background-color: #f8f9fa;
    padding: 0;
    border-top: 1px solid #e9ecef;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.side-submenu.expanded {
    padding: 10px 0;
    max-height: 500px;
}

.side-submenu-item {
    display: block;
    padding: 10px 40px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: #666;
    text-decoration: none;
    transition: all 0.2s ease;
}

.side-submenu-item:hover {
    color: #2c2c2c;
    background-color: #e9ecef;
}

.side-submenu-item.active {
    color: #ffffff;
    background-color: var(--point-color);
}

.side-submenu-item.active:hover {
    background-color: var(--point-color);
}

@media (max-width:1200px) {
	.side-logo img {max-width:200px;}
	.side-menu-close {top:20px; right:20px;}
}

.slide-container {
    display: flex;
    height: 100vh;
    width: 100%;
    position: relative;
	overflow:hidden;
}

/* 왼쪽 작은 이미지 */
.left-small-image {
    position: absolute;
    left: 0%;
    bottom: -8%;
    transform: translateY(0);
    width: 320px;
    height: 320px;
    z-index: 10;
    border-radius: 0;
    overflow: hidden;
}

.left-small-image img {max-height:200%; position:absolute; left:110%; top:10%; transform:translate(-50%,-50%); }

/* 이미지 플레이스홀더 */
.image-placeholder {
    width: 100%;
    height: 100%;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 0.9rem;
    position: relative;
}

/* 메인 섹션 */
.main-section {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: rgba(239, 238, 236,1);
}

/* 배경 데코레이션 */
.background-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    z-index:2;
}

.circle-1 {
    width: 30vw;
    height: 30vw;
    background: rgb(187, 143, 110);
    top: 30%;
    left: -10%;
}

.circle-2 {
    width: 200px;
    height: 200px;
    background: #f97316;
    bottom: 20%;
    left: 10%;
}

.circle-3 {
    width: 150px;
    height: 150px;
    background: #ef4444;
    top: 50%;
    left: 20%;
}

.script-text {
    position: absolute;
    font-family: var(--font-handwriting-style);
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.28);
    font-weight: 400;
    z-index:3;
}

.script-1 {
    top: 7%;
    left: 0%;
    font-size: 25rem;
}

.script-2 {
    bottom: 32%;
    right: 20%;
    font-size: 20rem;
}

.script-3 {
    top: 85%;
    right: 20%;
    font-size: 20rem;
}

/* 오른쪽 큰 이미지 */
.right-large-image {
    position: absolute;
    top: 85px;
    right: 2%;
    width: 40%;
    height: calc(100% - 85px);
    z-index: 1;
    overflow:hidden;
}

/* 큰 이미지 플레이스홀더 */
.large-image-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    color: #cccccc;
    font-size: 1.2rem;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.large-image-placeholder.active {
    opacity: 1;
}

/* 메인 컨텐츠 */
.overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 100%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 80px 0 360px;
}

.studio-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 5px;
    text-transform: uppercase;
    margin-left:-5rem;
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-size: 5.5rem;
    font-weight: 400;
    line-height: 1.1;
    color: #2c2c2c;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left:-5rem;
}

.page-indicator {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #666;
}

.separator {
    width: 40px;
    height: 1px;
    background-color: #ccc;
}

.current-page {
    font-weight: 600;
    color: #2c2c2c;
}

.description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
    max-width: 400px;
}

.cta-button {
    background-color: var(--point-color);
    color: #111;
    border: none;
    padding: 20px 60px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #fff;
}

/* 슬라이드 전환 효과 */
.slide-right-image, .slide-left-image {
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide-right-image.active, .slide-left-image.active {
    opacity: 1;
    position: relative;
}

.slide-content {
    display: none;
    transition: opacity 0.6s ease-in-out;
    padding-left:5rem;
}

.slide-content.active {
    display: block;
    opacity: 1;
}

/* 슬라이더 네비게이션 */
.slider-navigation {
    position: absolute;
    bottom: 40px;
    left: 360px;
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 100;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border: 0px solid rgba(0,0,0, 0.1);
    background: rgba(255, 255, 255, 0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0,0,0,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0);
    border-color: rgba(255, 255, 255, 0.5);
    color: rgba(0,0,0,0.4);
    transform: scale(1.1);
}

.slide-indicators {
    display: flex;
    gap: 12px;
    align-items: center;
}

.indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: #666;
    transform: scale(1.3);
}

.indicator:hover {
    background-color: rgba(255, 255, 255, 0.6);
}

/* 반응형 디자인 */
@media (max-width: 1200px) {

	.logo img {max-width:180px;}
    .circle-1 {width:60vw; height:60vw; top:20vw; left:-20vw;}
    .script-1 {font-size:10rem;}
    .left-small-image {display:none; top:initial; bottom:4vw; left:0vw; width:52vw; height:auto; background:transparent; }
    .left-small-image img {width:100%;}
    .right-large-image { width:26vw; height:initial;}
   

    .overlay-content {
        width:100%;
        padding: 0 20px;
        margin-top:-2rem;
        width: 100%;
    }

    .main-title, .studio-label {margin-left:0;}
    .slide-content { padding-left:0;}

    .main-title {
        font-size: 2rem;
    }
    
    .description {
        font-size: 14px;
    }
    
    .slider-navigation {
        bottom: 20px;
        left: 20px;
        gap: 20px;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
    }
    
    /* 헤더 반응형 */
    .header-content {
        padding: 15px 20px;
    }
    
    .navigation {
        display: none;
    }
    
    .logo h2 {
        font-size: 1.5rem;
    }
    
    .logo span {
        font-size: 0.7rem;
    }
    
    .slide-container {
        margin-top: 0;
    }
    
    .dropdown-menu {
        display: none;
    }
    
    /* 모바일 사이드 메뉴 */
    .side-menu {
        width: 100%;
        right: -110%;
    }
    
}

/* 애니메이션 효과 */
.overlay-content > * {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.left-small-image {
    opacity: 0;
    animation: fadeInLeft 1s ease forwards;
}

.studio-label { animation-delay: 0.2s; }
.main-title { animation-delay: 0.3s; }
.page-indicator { animation-delay: 0.4s; }
.description { animation-delay: 0.5s; }
.cta-button { animation-delay: 0.6s; }
.slider-navigation { animation-delay: 0.7s; }

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}


.container {
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
    box-sizing: border-box;
}

.innercontainer {
	max-width: calc(var(--max-width) + 200px);
	margin:0 auto;
	width:100%;
	padding:0 20px;
	position:relative;
}

@media (max-width: 1200px) {
    .container {
        padding: 0 20px;
    }
	.innercontainer {padding:0;}
}

/* About Studio 섹션 */
.about-studio-section {
    width: 100%;
    min-height: 100vh;
    padding: 160px 0 60px 0;
    display: flex;
    align-items: center;
}



.about-container {
    display: flex;
    align-items: center;
    gap: 100px;
}

.about-text-content {
    flex: 1;
    max-width: 600px;
}

.about-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    color: #0d9488;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.3;
	letter-spacing:-0.05em;
    color: #2c2c2c;
    margin-bottom: 40px;
}

.about-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 0;
}

.about-images {
    flex: 1;
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-1 {
    position: absolute;
    width: 280px;
    height: 320px;
    top: 100px;
    left: 0;
    z-index: 2;
    overflow: hidden;
}

.about-image-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-2 {
    position: absolute;
    width: 400px;
    height: 500px;
    top: 0px;
    right: -20px;
    z-index: 1;

    overflow: hidden;


}

.about-image-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* About Studio 반응형 */
@media (max-width: 1200px) {
    .about-container {
        flex-direction: column;
        gap: 80px;
        text-align: center;
    }
    
    .about-title {
        font-size: 2.25rem;
    }
    
    .about-images {
        height: 500px;
    }
    
    .about-image-1 {
        width: 240px;
        height: 280px;
        left: 10px;
    }
    
    .about-image-2 {
        width: 400px;
        height: 320px;
        right: -30px;
    }
}

@media (max-width: 768px) {
    .about-studio-section {
        padding: 80px 0;
    }
    
    .about-container {
        gap: 60px;
    }
       
    .about-images {
        height: 400px;
    }
    
    .about-image-1 {
        width: 180px;
        height: 220px;
        left: 0;
        top: 30px;
    }
    
    .about-image-2 {
        width: 300px;
        height: 240px;
        right: -20px;
        top: 80px;
    }
}

/* What We Do 섹션 */
.what-we-do-section {
    width: 100%;

    padding: 120px 0;
}

.what-we-do-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 100px;
    gap: 120px;
}

.what-we-do-left {
    flex: 0 0 auto;
}

.what-we-do-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    color: #888;
    text-transform: uppercase;
}

.what-we-do-right {
    flex: 1;
}

.what-we-do-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.85rem;
    font-weight: 600;
    line-height: 1.3;
    color: #2c2c2c;
	letter-spacing:-0.05em;
    margin-bottom: 40px;
    max-width: none;
	margin-top:-10px;
}

.what-we-do-description {

}

.what-we-do-description p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 0;
}

.what-we-do-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
}

.feature-item {
    text-align: left;
}

.feature-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 40px;
}

.circle {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.circle-primary {
    background-color: var(--point-color);
    top: 0;
    left: 0;
    z-index: 1;
    opacity:0.8;
}

.circle-secondary {
    background-color: transparent;
    border: 2px solid #747474;
    top: 20px;
    left: 20px;
    z-index: 1;
}

/* 첫 번째 프레임: 좌우 배치 */
.feature-horizontal .circle-primary {
    top: 10px;
    left: 0;
}

.feature-horizontal .circle-secondary {
    top: 10px;
    left: 20px;
}

/* 두 번째 프레임: 위아래 배치 */
.feature-vertical .circle-primary {
    top: 0;
    left: 10px;
}

.feature-vertical .circle-secondary {
    top: 20px;
    left: 10px;
}

/* 세 번째 프레임: 45도 각도 배치 */
.feature-diagonal .circle-primary {
    top: 0;
    left: 0;
}

.feature-diagonal .circle-secondary {
    top: 14px;
    left: 14px;
}

.feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.3;
	letter-spacing:-0.05em;
    color: #2c2c2c;
    margin-bottom: 24px;
}

.feature-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 24px;
}

.feature-link {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #2c2c2c;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.3s ease;
}

.feature-link:hover {
    color: #8B7355;
}

/* What We Do 반응형 */
@media (max-width: 1200px) {
    .what-we-do-header {
        flex-direction: column;
        gap: 50px;
        margin-bottom: 80px;
		margin-top:200px;
    }
    
    .what-we-do-title {
        font-size: 2rem;
		
    }
    
    .what-we-do-features {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto 40px;
    }
}


/* Customer Inquiry 섹션 */
.customer-inquiry-section {
    padding: 120px 0;
    display: flex;
    align-items: center;
}

@media (max-width:1200px) {
	.customer-inquiry-section {padding:120px 0 0 0;}
}

/* 제목 영역 */
.inquiry-header {
    margin-bottom: 100px;
    text-align: left;
}

.inquiry-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
	padding-top:40px;
}

.inquiry-images {
    position: absolute;
    left: calc(-50vw + 50%);
    width: 50vw;
    height: 600px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.inquiry-image-1 {
    width: 480px;
    height: 400px;
    overflow: hidden;
    flex-shrink: 0;
	padding-top:30px;
}

.inquiry-image-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inquiry-image-2 {
    width: 260px;
    height: 260px;
    overflow: hidden;
    flex-shrink: 0;
    margin-top: 40px;
}

.inquiry-image-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inquiry-text {
    margin-left: auto;
    max-width: 650px;
    padding-left: 20px;
}

.inquiry-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    color: #888;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.inquiry-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.3;
    color: #2c2c2c;
    margin-bottom: 40px;
}

.inquiry-description {
    margin-bottom: 50px;
}

.inquiry-description p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 0;
}

.inquiry-button {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    background: var(--point-color);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.inquiry-button:hover {
    background: #f5d943;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Customer Inquiry 반응형 */
@media (max-width: 1200px) {
    .inquiry-header {
        margin-bottom: 20px;
    }
    
    .inquiry-content {
        flex-direction: column;
        align-items: flex-start;
		padding-top:0;
    }
    
    .inquiry-images {
        position: relative;
        left: calc(-50vw + 50%);
        width: 100vw;
        height: 400px;
        justify-content: flex-start;
        padding-left: 20px;
        gap: 20px;
    }
    
    .inquiry-image-1 {
        width: 260px;
        height: 320px;
		padding-top:0;
    }
    
    .inquiry-image-2 {
        width: 200px;
        height: 200px;
        margin-top: 0;
        position:absolute;
        right:20px;
        top:80%;
    }
    
    .inquiry-text {
        margin-left: 0;
        padding-left: 0;
        max-width: 100%;
		margin-top:160px;
    }
    
    .inquiry-title {
        font-size: 2.4rem;
    }
}


/* Projects Slider 섹션 */
.projects-slider-section {
    width: 100%;
    background: #f9f9f3;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.projects-content-wrapper {
    padding: 120px 0 80px;
}

.projects-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 100px;
}

.projects-text {
    flex: 1;
    max-width: 500px;
}

.projects-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    color: #888;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.projects-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.1;
    color: #111;
	letter-spacing:-0.05em;
    margin-bottom: 0;
}

.projects-description {
    flex: 1;
    max-width: 600px;
}

.projects-description p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #959595;
    margin-bottom: 20px;
}

.projects-description p:last-child {
    margin-bottom: 0;
}

.projects-slider-wrapper {
    position: relative;
    padding-bottom: 80px;
}

.projects-slider {
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    padding-left: max(40px, calc((100vw - var(--max-width)) / 2 + 40px));
}

.projects-swiper {
    width: 100%;
    height: 480px;
    padding-bottom: 80px;
}

.projects-swiper .swiper-slide {
    height: 400px;
    overflow: hidden;
    border-radius: 0;
    position: relative;
    background: #1a1d21;
}

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

.projects-swiper .swiper-slide:hover img {
    transform: scale(1.05);
}

.projects-navigation {
    position: absolute;
    bottom: 20px;
    left: max(40px, calc((100vw - var(--max-width)) / 2 + 40px));
    display: flex;
    gap: 20px;
    z-index: 100;
}

.projects-nav-btn {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.projects-nav-btn:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(0, 0, 0, 0.3);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.projects-nav-btn.swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.projects-nav-btn.swiper-button-disabled:hover {
    transform: none;
}

.scroll-top-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    border: none;
    background: var(--point-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    transform: scale(1.1);
    background: #f5d943;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Projects Slider 반응형 */
@media (max-width: 1280px) {
    .projects-content-wrapper {padding:80px 0 60px 0;}
    .projects-slider-wrapper {padding-bottom:20px;}
    .projects-slider {
        padding-left: 20px;
        padding-bottom:30px;
        left: 50%;
        transform: translateX(-50%);
    }
    


    .projects-content {
        flex-direction: column;
        gap: 50px;
        text-align: left;
    }
    
    .projects-title {
        font-size: 2.5rem;
    }
    
    .projects-swiper {
        height: 410px;
        padding-bottom: 80px;
    }
    
    .projects-swiper .swiper-slide {
        height: 350px;
    }
    
    .projects-navigation {
        left: 20px;
        bottom: 20px;
    }
    
    .scroll-top-btn {
        bottom: 30px;
        right: 15px;
    }

    
}



/* 푸터 섹션 */
.footer-section {
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 60px 0;
    margin-top: 120px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 40px;
}
.footer-company .footer-logo {margin-bottom:30px;}
.footer-company .footer-logo img {max-width:220px;}

.footer-company .footer-logo h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #ffffff;
}

.footer-tagline {
    font-size: 14px;
    color: #999999;
    font-weight: 500;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 30px;
}

.footer-address,
.footer-contact {
    margin-bottom: 25px;
}

.footer-address p,
.footer-contact p {
    margin: 8px 0;
    color: #cccccc;
    font-size: 16px;
    line-height: 1.6;
}

.footer-contact strong {
    color: #ffffff;
    display: block;
    margin-bottom: 8px;
}

.footer-links h4,
.footer-info h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #ffffff;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.business-hours,
.business-info {
    margin-bottom: 25px;
}

.business-hours p,
.business-info p {
    margin: 8px 0;
    color: #cccccc;
    font-size: 16px;
    line-height: 1.6;
}

.business-hours strong,
.business-info strong {
    color: #ffffff;
    display: block;
    margin-bottom: 8px;
}

.footer-bottom {
    padding: 0;
}

.footer-copyright {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.footer-copyright p {
    margin: 0;
    color: #999999;
    font-size: 14px;
}
.footer-copyright p a {color:#999;}

.footer-legal {
    display: flex;
    gap: 30px;
	width:100%;
}

.footer-legal a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--point-color);
}

.footer-half {display:grid; width:100%; grid-template-columns: 0.8fr 0.2fr;}
.footer-half div a {margin-right:8px;}
.footer-half div:last-child {text-align:right;}
.footer-half div:last-child a {color:gray; margin-right:0; margin-left:8px;}

/* 모바일 반응형 */
@media (max-width: 1200px) {
    .footer-section {
        padding: 40px 0;
        margin-top: 100px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 0;
        text-align: left;
        margin-bottom: 20px;
    }
    
    /* 바로가기, 운영정보 섹션 숨기기 */
    .footer-links,
    .footer-info {
        display: none;
    }
    
    /* 로고 작게 표시 */
    .footer-company .footer-logo h3 {
        font-size: 24px;
        margin-bottom: 6px;
    }
    
    .footer-tagline {
        font-size: 12px;
        margin-bottom: 20px;
    }
    
    .footer-address,
    .footer-contact {
        margin-bottom: 15px;
    }
    
    .footer-address p,
    .footer-contact p {
        font-size: 14px;
        margin: 4px 0;
    }
    
    .footer-copyright {
        flex-direction: column;
        gap: 10px;
        text-align: left;
    }
    
    .footer-copyright p {
        font-size: 0.84rem;
    }
    
    .footer-legal {
        gap: 20px;
    }
    
    .footer-legal a {
        font-size: 14px;
        font-weight: 500;
    }
    
    .footer-bottom {
        padding: 0;
        border:0;
    }

	.footer-half {grid-template-columns:1fr; gap: 10px; }
	.footer-half div:last-child {text-align:left;}
	.footer-half div:last-child a {margin:0 8px 0 0;}
}

/* ====================================================================
   서브페이지 스타일
   ==================================================================== */

/* 페이지 타이틀 섹션 */
.page-title-section {
    padding: 150px 0 110px;
    position: relative;
}

.page-title-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.page-title-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.title-circle {
    position: absolute;
    border-radius: 50%;
}

.title-circle.sub-circle-1 {
    width: 200px;
    height: 200px;
    top: -25%;
    right: 5%;
    animation-delay: 0s;
    border:1px solid #8d8d8d;
    background:none;
    z-index:3;
    animation: float1 6s ease-in-out infinite; 
}

.title-circle.sub-circle-2 {
    width: 150px;
    height: 150px;
    top: 0%;
    right: 15%;
    animation-delay: 0.5s;
    background:#f4d220;
    opacity:0.7;
    animation: float2 6s ease-in-out infinite; 
}

.title-circle.sub-circle-3 {
    width: 100px;
    height: 100px;
    top: 15%;
    left: 0%;
    animation-delay: 0.5s;
    animation: float3 6s ease-in-out infinite;
    border:1px solid #ddd;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -25px); }
}
@keyframes float2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20px, 20px); }
}
@keyframes float3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(25px, -25px); }
}

@media (max-width:1200px) {
	.title-circle.sub-circle-1 {width:100px; height:100px; top:-5%; right:10%; opacity:0.4;}
	.title-circle.sub-circle-2 {width:70px; height:70px; top:40%; right:0%; }
	.title-circle.sub-circle-3 {width:80px; height:80px; left:5%;}

	@keyframes float3 {
		0%, 100% { transform: translate(0, 0); }
		50% { transform: translate(20px, 20px); }
	}
}

.page-title-content {
    text-align: center;
}

.page-breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}

.page-breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-breadcrumb a:hover {
    color: #2a4a5a;
}

.breadcrumb-separator {
    margin: 0 10px;
    color: #ccc;
}

.current-page {
    color: #999;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 0;
    font-weight: 300;
}

/* 메인 컨테이너 */
.main-container {
    padding: 80px 0;
    background: #fff;
}

.sub-content {
     margin: 0 auto;
}

/* 서브페이지 반응형 디자인 */
@media (max-width: 768px) {
    .page-title-section {
        padding: 100px 0 60px;
    }
    
    .page-title {
        font-size: 36px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    .main-container {
        padding: 60px 0;
    }
    
    .title-circle.circle-1 {
        width: 120px;
        height: 120px;
    }
    
    .title-circle.circle-2 {
        width: 100px;
        height: 100px;
    }
    
    .title-circle.circle-3 {
        width: 80px;
        height: 80px;
    }
}

