/* Typography */
:root {
	--space-mobile: 24px;
	--space-desktop: 120px;
}

html { font-size: 100%; }
body {
	margin: 0;
	font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
	color: #e8e8e8;
	background: #0b0b0c;
	line-height: 1.5;
}

.h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.2; }
.h2 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.25; }
.h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); line-height: 1.3; }
.p1 { font-size: clamp(1rem, 1.4vw, 1.25rem); }
.p2 { font-size: clamp(0.875rem, 1.2vw, 1rem); }

/* Layout */
.container { width: min(92vw, 1200px); margin: 0 auto; }
.section-hero, .section-work, .section-services, .section-about, .section-contact, .section-cta, .section-footer { padding: var(--space-mobile) 0; }
.section-work { background: #fff; }
.section-work .h2,
.section-work .p1 { color: #000; }

@media (min-width: 1280px) {
	.section-hero, .section-work, .section-services, .section-about, .section-contact, .section-cta, .section-footer {
		padding: var(--space-desktop) 0;
	}
}

/* Header & Nav */
.site-header { 
	position: sticky; 
	top: 0; 
	z-index: 50; 
	background: rgba(11,11,12,0.8); 
	backdrop-filter: saturate(140%) blur(10px); 
}
.header-inner { 
	display: flex; 
	align-items: center; 
	justify-content: space-between; 
	padding: 16px 0; 
	max-width: 1200px; 
	margin: 0 auto; 
	padding-left: 24px; 
	padding-right: 24px; 
	position: relative; /* 상대 위치 설정 */
	width: 100%; /* 전체 너비 사용 */
	box-sizing: border-box; /* 패딩 포함 계산 */
}
.brand-link { 
	color: #fff; 
	text-decoration: none; 
	font-weight: 600; 
	font-size: clamp(1.125rem, 2.5vw, 1.5rem); 
	transition: color 0.3s ease; 
	letter-spacing: 0.05em; 
}
.brand-link:hover { 
	color: #cfcfcf; 
}
.brand-text { 
	display: inline-block; 
}
.site-nav { 
	display: flex; 
	align-items: center; 
	gap: 20px; /* 메뉴와 햄버거 버튼 사이 간격 */
}

/* 데스크톱 메뉴 - 오른쪽 끝으로 이동 */
@media (min-width: 1024px) {
	.header-inner {
		display: flex !important;
		justify-content: space-between !important;
		align-items: center !important;
	}
	
	.brand {
		flex: 0 0 auto; /* 로고는 고정 크기 */
	}
	
	.site-nav {
		display: flex !important;
		justify-content: flex-end !important; /* 메뉴를 오른쪽 끝으로 */
		align-items: center !important;
		flex: 1; /* 남은 공간 모두 사용 */
	}
	
	.menu-desktop {
		margin-left: auto; /* 메뉴를 오른쪽 끝으로 밀기 */
	}
}

/* 모바일에서 헤더 레이아웃 */
@media (max-width: 1023px) {
	.header-inner {
		display: flex !important;
		justify-content: space-between !important;
		align-items: center !important;
		width: 100% !important;
		max-width: 100% !important; /* 모바일에서 전체 너비 사용 */
	}
	
	.brand {
		flex: 0 0 auto; /* 로고는 고정 크기 */
		z-index: 1002; /* 햄버거 버튼보다 위에 */
	}
	
	.site-nav {
		display: flex !important;
		justify-content: flex-end !important; /* 햄버거 버튼을 오른쪽으로 */
		align-items: center !important;
		flex: 0 0 auto; /* 햄버거 버튼은 고정 크기 */
		position: relative; /* 상대 위치 */
	}
	
	/* 모바일에서 데스크톱 메뉴 완전 숨김 */
	.menu-desktop {
		display: none !important;
	}
}

@media (max-width: 1023px) {
	/* 모바일 헤더 높이 고정 및 중앙 정렬 */
	.site-header {
		height: 64px !important;
	}
	.header-inner {
		min-height: 64px !important;
		padding-top: 0 !important;
		padding-bottom: 0 !important;
		align-items: center !important;
	}
	.site-nav {
		height: 64px !important;
		align-items: center !important;
	}
	.brand-link {
		display: inline-flex !important;
		align-items: center !important;
		height: 64px !important;
	}
	/* 햄버거 버튼을 헤더 중앙 정렬 */
	.menu-toggle {
		top: 50% !important;
		transform: translateY(-50%) !important;
	}
}

/* 기본 메뉴 스타일 - PRD 미니멀 디자인 */
.menu,
.site-nav .menu,
#menu-primary,
.menu-primary { 
	list-style: none !important; 
	margin: 0 !important; 
	padding: 0 !important; 
	display: flex !important; 
	flex-direction: row !important; 
	gap: clamp(20px, 4vw, 32px) !important; 
	align-items: center !important; 
}
.menu li { 
	list-style: none !important; 
	margin: 0 !important; 
	padding: 0 !important; 
}
.menu li::before { 
	display: none !important; 
}
.menu a { 
	color: #cfcfcf; 
	text-decoration: none; 
	display: block; 
	padding: 8px 0; 
	font-size: clamp(0.875rem, 1.2vw, 1rem); 
	font-weight: 400; 
	letter-spacing: 0.02em; 
	transition: color 0.3s ease, transform 0.2s ease; 
	position: relative; 
}
.menu a:hover { 
	color: #fff; 
	transform: translateY(-1px); 
}
.menu a:focus { 
	outline: none; 
	color: #fff; 
}

/* WordPress 기본 메뉴 스타일 강제 오버라이드 */
.site-nav ul,
.site-nav ul li,
.site-nav ul li a,
#menu-primary,
#menu-primary li,
#menu-primary li a { 
	display: flex !important; 
	flex-direction: row !important; 
	align-items: center !important; 
	list-style: none !important; 
	margin: 0 !important; 
	padding: 0 !important; 
}

@media (min-width: 1024px) {
	.site-nav ul,
	#menu-primary { 
		display: flex !important; 
		flex-direction: row !important; 
		align-items: center !important; 
		gap: 32px !important; 
		margin-left: auto !important; /* 메뉴를 오른쪽 끝으로 */
	}
	
	/* 데스크톱에서 햄버거 버튼 완전 숨김 */
	.menu-toggle {
		display: none !important;
	}
}

/* 햄버거 버튼 - 완전히 새로운 구조 */
.menu-toggle {
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	display: none; /* 기본은 숨김 */
	z-index: 1003; /* 최상위 레이어 */
	position: relative;
	width: 44px;
	height: 44px;
	margin-left: auto; /* 오른쪽 끝으로 밀기 */
	border-radius: 4px;
	transition: background-color 0.3s ease;
}

/* 모바일에서 햄버거 버튼 강제 표시 */
@media (max-width: 1023px) {
	.menu-toggle {
		display: block !important; /* 모바일에서 강제 표시 */
		visibility: visible !important;
		opacity: 1 !important;
		position: relative !important;
		z-index: 1001 !important;
		margin-left: auto !important; /* 오른쪽 끝으로 강제 이동 */
		flex-shrink: 0; /* 크기 고정 */
		pointer-events: auto !important; /* 클릭 가능하도록 */
		cursor: pointer !important; /* 커서 표시 */
	}
	
	/* 햄버거 아이콘 강제 표시 */
	.hamburger-icon {
		display: block !important;
		visibility: visible !important;
		opacity: 1 !important;
	}
	
	.hamburger-icon .line {
		display: block !important;
		visibility: visible !important;
		opacity: 1 !important;
	}
}

@media (max-width: 1023px) {
	/* 햄버거 버튼: 뷰포트 가장 오른쪽에 밀착 */
	.menu-toggle {
		right: 0 !important; /* 오른쪽 끝에 밀착 */
		padding-right: max(8px, env(safe-area-inset-right)) !important; /* 안전 영역 보정 */
	}
}

@media (max-width: 1023px) {
	/* 햄버거 버튼: 헤더 내부 기준 중앙 정렬 (고정 아님) */
	.menu-toggle {
		position: absolute !important; /* header-inner 기준 */
		top: 50% !important;
		transform: translateY(-50%) !important;
		z-index: 10050 !important;
	}
}

.menu-toggle:focus {
	outline: none;
}

/* 햄버거 아이콘 기본 스타일 */
.hamburger-icon {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 28px;
	height: 20px;
	position: relative;
}

.hamburger-icon .line {
	display: block;
	width: 100%;
	height: 2px;
	background: #fff;
	position: absolute;
	left: 0;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border-radius: 1px;
}

.hamburger-icon .line:nth-child(1) {
	top: 0;
}

.hamburger-icon .line:nth-child(2) {
	top: 50%;
	transform: translateY(-50%);
}

.hamburger-icon .line:nth-child(3) {
	bottom: 0;
}

/* 햄버거 버튼 호버 효과 */
.menu-toggle:hover .hamburger-icon .line {
	background: #cfcfcf;
}

/* X 버튼 활성화 상태 - 명확하게 보이도록 */
.menu-toggle.active .hamburger-icon .line {
	background: #fff !important; /* 확실히 흰색으로 */
}

.menu-toggle.active .hamburger-icon .line:nth-child(1) {
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
}

.menu-toggle.active .hamburger-icon .line:nth-child(2) {
	opacity: 0;
	transform: translateY(-50%) scaleX(0);
}

.menu-toggle.active .hamburger-icon .line:nth-child(3) {
	bottom: 50%;
	transform: translateY(50%) rotate(-45deg);
}

/* 메뉴 열렸을 때 X 버튼 더 강조 */
.menu-toggle.active {
	background: rgba(255, 255, 255, 0.1) !important;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* 데스크톱 메뉴 - 가로 정렬 강제 */
.menu-desktop,
.site-nav .menu-desktop,
#menu-primary-desktop { 
	display: none !important; 
}
@media (min-width: 1024px) {
	.menu-desktop,
	.site-nav .menu-desktop,
	#menu-primary-desktop { 
		display: flex !important; 
		flex-direction: row !important; 
		align-items: center !important; 
		gap: 32px !important; 
	}
	.menu-toggle { 
		display: none !important; 
	}
	
	/* 데스크톱에서 모바일 메뉴 완전 숨김 */
	.mobile-menu {
		display: none !important;
	}
	
	.mobile-menu-overlay {
		display: none !important;
	}
	
	/* body 스크롤 방지 - 메뉴 열렸을 때 */
	body.menu-open {
		overflow: hidden !important;
		position: fixed !important;
		width: 100% !important;
		height: 100% !important;
	}
}

/* 모바일 메뉴 오버레이 - 배경 어둡게 처리 */
.mobile-menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.85);
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	backdrop-filter: blur(2px);
}

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

/* 모바일 메뉴 - 즉시 표시 스타일 */
.mobile-menu { 
	position: fixed !important; 
	top: 0 !important; 
	left: 0 !important; 
	width: 100vw !important; 
	height: 100vh !important; 
	background: #1a1a1a !important; 
	display: none !important; 
	z-index: 1001 !important; 
	overflow-y: auto !important; 
	padding: 100px 24px 24px !important; 
}

.mobile-menu.active { 
	display: block !important; 
}

/* 메뉴 아이템 애니메이션 제거 */
.mobile-menu .menu-mobile li { 
	opacity: 1 !important;
	transform: none !important;
	transition: none !important;
	margin: 0 0 20px 0 !important;
}

.mobile-menu .menu-mobile li:nth-child(n) { transition-delay: 0s !important; }

/* 모바일 메뉴 내부 스타일 */
.mobile-menu-inner { 
	width: 100% !important; 
	height: auto !important; 
	display: block !important; 
	position: relative; 
}

.menu-mobile { 
	list-style: none !important; 
	margin: 0 !important; 
	padding: 0 !important; 
	display: block !important; 
}

.menu-mobile li { 
	list-style: none !important; 
	margin: 0 0 25px 0 !important; 
	padding: 0 !important; 
	opacity: 0;
	transform: translateX(20px);
	transition: all 0.3s ease;
}

.menu-mobile li::before { 
	display: none !important; 
}

/* 메뉴 열렸을 때 애니메이션 */
.mobile-menu.active .menu-mobile li {
	opacity: 1;
	transform: translateX(0);
}

/* 각 메뉴 아이템에 지연 효과 */
.mobile-menu.active .menu-mobile li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .menu-mobile li:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .menu-mobile li:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .menu-mobile li:nth-child(4) { transition-delay: 0.25s; }

.menu-mobile a { 
	color: #fff !important; 
	text-decoration: none !important; 
	font-weight: 500 !important; 
	font-size: 22px !important; 
	letter-spacing: 0.02em !important; 
	transition: color 0.3s ease, transform 0.2s ease !important; 
	display: block !important; 
	padding: 12px 0 !important; 
	position: relative !important; 
}

.menu-mobile a:hover { 
	color: #999 !important; 
	transform: translateX(5px) !important; 
}

.menu-mobile a:focus { 
	outline: none !important; 
	color: #999 !important; 
}

/* Work Section - 완벽한 반응형 슬라이더 */
.section-work { 
	background: #fff; 
}
.section-work .h2,
.section-work .p1 { 
	color: #000; 
}

.section-work .h2 {
	margin-bottom: 4px;
}

.section-work .p1 {
	margin-top: 0;
	margin-bottom: 0;
}

.work-slider {
	position: relative;
	overflow: hidden;
	margin: 40px 0;
	width: 100%;
}

.work-slider__track {
	display: flex;
	transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	width: 100%;
	gap: 20px; /* CSS gap 사용으로 일관된 간격 */
	cursor: grab; /* 드래그 가능함을 시각적으로 표시 */
}

.work-slider__track:active {
	cursor: grabbing; /* 드래그 중 커서 변경 */
}

.work-slider__slide {
	flex: 0 0 calc((100% - 40px) / 3); /* 데스크톱: 3개 카드, gap 20px 고려 */
	box-sizing: border-box;
}

.work-slider__card {
	background: #fff;
	border-radius: 0;
	overflow: hidden;
	box-shadow: none;
	transition: transform 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
	width: 100%;
	flex-shrink: 0; /* 카드가 찌그러지지 않도록 */
}

.work-slider__media {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1/1; /* 모든 화면에서 동일한 정사각형 비율 */
	flex: 1;
}

.work-slider__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.work-slider__content {
	padding: 24px 0;
	flex-shrink: 0;
}

.work-slider__title {
	font-size: clamp(1.125rem, 2.5vw, 1.5rem);
	font-weight: 600;
	margin: 0 0 4px 0;
	color: #000;
}

.work-slider__description {
	font-size: clamp(0.875rem, 1.2vw, 1rem);
	color: #666;
	margin: 0;
	line-height: 1.5;
}

.work-slider__controls {
	position: absolute;
	top: 40%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	pointer-events: none;
	z-index: 10;
	padding: 0 20px;
}

.work-slider__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: #000;
	color: #fff;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	transition: background 0.3s ease;
	pointer-events: auto;
}

.work-slider__btn:hover {
	background: #333;
}

.work-slider__btn:disabled {
	background: #ccc;
	cursor: not-allowed;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* 반응형 - 완벽한 반응형 슬라이더 */

/* 태블릿 (max-width: 1024px) - 2개 카드 표시 */
@media (max-width: 1024px) {
	.work-slider__track {
		gap: 16px; /* 태블릿에서 간격 조정 */
	}
	
	.work-slider__slide {
		flex: 0 0 calc((100% - 16px) / 2); /* 2개 카드, gap 16px 고려 */
	}
	
	.work-slider__controls {
		padding: 0 15px;
	}
}

/* 모바일 (max-width: 768px) - 1개 카드 표시 */
@media (max-width: 768px) {
	.work-slider__track {
		gap: 0; /* 모바일에서는 gap 없음 */
	}
	
	.work-slider__slide {
		flex: 0 0 100%; /* 1개 카드, 전체 너비 */
		padding: 0 20px; /* 좌우 여백으로 터치 영역 확보 */
	}
	
	.work-slider__controls {
		padding: 0 10px;
	}
	
	.work-slider__btn {
		width: 40px;
		height: 40px;
	}
}

/* Services Section */
.section-services {
	background: #0b0b0c;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(2, 1fr);
	gap: 20px;
	margin-top: 40px;
}

.service-card {
	position: relative;
	height: 400px;
	overflow: hidden;
	background: #1a1a1a;
	border-radius: 0;
	cursor: pointer;
}

.service-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.service-card:hover img {
	transform: scale(1.05);
}

.service-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.8);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
	padding: 20px;
	text-align: center;
}

.service-card:hover .service-overlay {
	opacity: 1;
}

.service-title {
	color: #fff;
	font-size: clamp(1.25rem, 3vw, 1.75rem);
	margin: 0 0 12px 0;
	font-weight: 600;
}

.service-description {
	color: #cfcfcf;
	font-size: clamp(0.875rem, 1.5vw, 1rem);
	margin: 0;
	line-height: 1.5;
}

.service-card-more {
	position: relative;
}

.service-link {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
}

@media (max-width: 768px) {
	.services-grid {
		grid-template-columns: 1fr;
		grid-template-rows: repeat(6, 250px);
	}
	
	.service-card {
		height: 250px;
	}
}

@media (min-width: 769px) and (max-width: 1023px) {
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(3, 300px);
	}
	
	.service-card {
		height: 300px;
	}
}

/* About Section - 비디오 표시 수정 */
.section-about {
	background: #0b0b0c;
	text-align: center;
}

.about-text-container {
	text-align: center;
	margin-bottom: 40px;
}

.about-title {
	font-size: clamp(2rem, 4vw, 3rem);
	margin: 0 0 4px 0;
	color: #fff;
}

.about-description {
	max-width: 40ch;
	margin: 0 auto;
	line-height: 1.6;
	margin-top: 4px;
}

.about-video-container {
	margin: 40px 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.about-video {
	max-width: 100%;
	max-height: 500px;
	width: 100%;
	height: auto;
	object-fit: cover;
	background: #000;
	border-radius: 0;
	display: block;
}

.about-more-container {
	margin-top: 40px;
}

.about-more-button {
	display: inline-block;
	padding: 12px 24px;
	background: #000;
	color: #fff;
	border: 1px solid #fff;
	text-decoration: none;
	font-size: clamp(14px, 2.5vw, 18px);
	font-weight: 600;
	transition: all 0.3s ease;
	border-radius: 0;
	cursor: pointer;
}

.about-more-button:hover {
	background: #fff;
	color: #000;
}

/* CTA Section */
.section-cta {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	min-height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin: 0;
	position: relative;
}

.section-cta::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.3);
	z-index: 1;
}

.cta-content {
	position: relative;
	z-index: 2;
	color: #fff;
}

.cta-title {
	font-size: clamp(2rem, 4vw, 3rem);
	margin: 0 0 32px 0;
}

.cta-button {
	display: inline-block;
	padding: 12px 24px;
	background: #000;
	color: #fff;
	border: 1px solid #fff;
	text-decoration: none;
	font-size: clamp(14px, 2.5vw, 18px);
	font-weight: 600;
	transition: all 0.3s ease;
	border-radius: 0;
	cursor: pointer;
}

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

@media (max-width: 768px) {
	.section-cta {
		min-height: 50vh;
	}
}

@media (min-width: 769px) and (max-width: 1023px) {
	.section-cta {
		min-height: 55vh;
	}
}

/* Footer - 완전 복구 */
.site-footer {
	background: #000;
	color: #fff;
	padding: 60px 0 40px;
	margin-top: 0;
}

.footer-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	margin-bottom: 60px;
}

.footer-left {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.footer-title {
	font-size: clamp(2rem, 4vw, 3rem);
	margin: 0;
	font-weight: 600;
	letter-spacing: 0.05em;
}

.brand-info {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.brand-logo {
	margin-bottom: 8px;
}

.logo-text {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	letter-spacing: 0.1em;
}

.brand-text {
	font-size: clamp(0.875rem, 1.2vw, 1rem);
	color: #cfcfcf;
	margin: 0;
}

.footer-right {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

.contact-info,
.email-info {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.contact-item {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.contact-label {
	font-size: clamp(0.875rem, 1.2vw, 1rem);
	font-weight: 600;
	letter-spacing: 0.05em;
	margin: 0;
}

.contact-value {
	font-size: clamp(1rem, 1.4vw, 1.25rem);
	font-weight: 500;
	margin: 0;
}

.contact-text {
	font-size: clamp(0.875rem, 1.2vw, 1rem);
	color: #cfcfcf;
	margin: 0;
	line-height: 1.4;
}

.footer-bottom {
	border-top: 1px solid #333;
	padding-top: 40px;
}

.footer-bottom-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.footer-nav {
	display: flex;
	gap: 32px;
}

.footer-nav-link {
	color: #cfcfcf;
	text-decoration: none;
	font-size: clamp(0.875rem, 1.2vw, 1rem);
	font-weight: 500;
	letter-spacing: 0.05em;
	transition: color 0.3s ease;
}

.footer-nav-link:hover {
	color: #fff;
}

.copyright {
	font-size: clamp(0.75rem, 1vw, 0.875rem);
	color: #999;
}

.design-credit {
	text-align: center;
}

.credit-text {
	font-size: clamp(0.75rem, 1vw, 0.875rem);
	color: #666;
	margin: 0;
	letter-spacing: 0.05em;
}

@media (max-width: 768px) {
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.footer-right {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	
	.footer-bottom-content {
		flex-direction: column;
		gap: 20px;
		text-align: center;
	}
	
	.footer-nav {
		justify-content: center;
		flex-wrap: wrap;
		gap: 24px;
	}
}

@media (min-width: 769px) and (max-width: 1023px) {
	.footer-grid {
		gap: 50px;
	}
	
	.footer-right {
		gap: 32px;
	}
}

/* Hero background video */
.section-hero {
	position: relative;
	overflow: hidden;
	background: #000;
}
.hero-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}
.hero-video__media {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.65);
}
.section-hero > .container {
	position: relative;
	z-index: 1;
}

/* Hero sizing: fill full viewport height on all devices */
.section-hero {
	min-height: 94vh; /* 기본 폴백 */
	padding: 0 !important; /* 전역 섹션 패딩 무시하여 빈 공간 제거 */
	position: relative;
	overflow: hidden;
	background: #000;
}
@supports (height: 100svh) {
	.section-hero {
		min-height: 94svh; /* 모바일 주소창 등 UI 제외한 안전한 뷰포트 높이 */
	}
}
/* Hero content centering for all breakpoints */
.section-hero > .container {
	min-height: inherit;
	display: flex;
	flex-direction: column;
	justify-content: center; /* 수직 중앙 */
	align-items: center; /* 수평 중앙 */
	text-align: center; /* 텍스트 가운데 정렬 */
	gap: 4px;
	padding-left: 24px;
	padding-right: 24px;
}

.section-hero .h1 {
	margin: 0;
}

.section-hero .h1,
.section-hero .p1 {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.section-hero .p1 {
	margin-top: 0;
	margin-bottom: 0;
}

@media (min-width: 1280px) {
	.section-hero {
		min-height: 100vh;
	}
}