* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html.page-index,
body.page-index {
	width: 100%;
	font-family: "Noto Sans KR", "Segoe UI", sans-serif;
	background: #48742C;
}

body.page-index {
	position: relative;
	color: #fff;
}

.hero {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	background: #48742C;
}

.hero-slider,
.hero-slider .swiper-wrapper,
.hero-slider .swiper-slide {
	height: 100%;
}

.hero-slider {
	position: absolute;
	inset: 0;
}

.hero-slide {
	position: relative;
	width: 100%;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	transform: scale(1.02);
}

.swiper-slide-active .hero-slide {
	animation: hero-zoom 5s ease-out forwards;
}

.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.32) 0%, rgba(0, 0, 0, 0.18) 38%, rgba(0, 0, 0, 0.56) 100%);
	pointer-events: none;
	z-index: 1;
}

.hero-copy {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 80px 32px 160px;
	text-align: center;
}

.hero-copy-inner {
	width: 100%;
	max-width: 900px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 28px;
	animation: hero-float 3.6s ease-in-out infinite;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
	content: none;
}

.hero-eyebrow-logo {
	display: block;
	width: min(40px, 12vw);
	height: auto;
	filter: brightness(0) invert(1) drop-shadow(0 10px 24px rgba(0, 0, 0, 0.28));
}

.hero-title {
	font-size: clamp(32px, 3.8vw, 60px);
	font-weight: 700;
	line-height: 1.18;
	letter-spacing: -0.035em;
	word-break: keep-all;
}

.hero-title .accent {
	color: #BA0020;
}

.hero-divider {
	margin: 28px auto 0;
	width: 40px;
	height: 2px;
	border-radius: 999px;
	background: #BA0020;
	opacity: 0.8;
}

.hero-description {
	margin-top: 22px;
	font-size: clamp(14px, 1.25vw, 18px);
	font-weight: 400;
	line-height: 2;
	letter-spacing: 0.04em;
	color: rgba(255, 255, 255, 0.72);
	word-break: keep-all;
}

.hero-pagination-wrap {
	position: absolute;
	right: 40px;
	bottom: 50%;
	z-index: 2;
	transform: translateY(50%);
}

.hero-pagination {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.hero-pagination .swiper-pagination-bullet {
	width: 2px;
	height: 20px;
	margin: 0 !important;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.28);
	opacity: 1;
	transition: height 0.3s ease, background 0.3s ease;
}

.hero-pagination .swiper-pagination-bullet-active {
	height: 40px;
	background: #BA0020;
}

.scroll-indicator {
	position: absolute;
	left: 50%;
	bottom: 34px;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	transform: translateX(-50%);
}

.mouse-shape {
	position: relative;
	width: 28px;
	height: 46px;
	border: 1.5px solid rgba(255, 255, 255, 0.78);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.04);
	backdrop-filter: blur(4px);
}

.mouse-shape::before {
	content: "";
	position: absolute;
	top: 9px;
	left: 50%;
	width: 4px;
	height: 9px;
	border-radius: 999px;
	background: #BA0020;
	transform: translateX(-50%);
	animation: mouse-wheel 1.7s ease-in-out infinite;
}

@keyframes mouse-wheel {
	0% {
		opacity: 0;
		transform: translate(-50%, -2px);
	}
	30% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		transform: translate(-50%, 13px);
	}
}

@keyframes hero-zoom {
	0% {
		transform: scale(1.02);
	}
	100% {
		transform: scale(1.08);
	}
}

@keyframes hero-float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-12px);
	}
}

@media (max-width: 980px) {
	.hero-copy {
		padding-top: 80px;
		padding-bottom: 160px;
	}

	.hero-pagination-wrap {
		right: 20px;
	}
}

@media (max-width: 768px) {
	.hero-copy {
		padding: 80px 20px 160px;
	}

	.hero-eyebrow {
		margin-bottom: 20px;
	}

	.hero-eyebrow-logo {
		width: min(40px, 56vw);
	}

	.hero-title {
		font-size: clamp(34px, 9.5vw, 52px);
	}

	.hero-divider {
		margin-top: 20px;
		width: 28px;
	}

	.hero-description {
		margin-top: 16px;
		font-size: 14px;
		line-height: 1.9;
	}

	.hero-pagination-wrap {
		right: 14px;
	}

	.scroll-indicator {
		left: 50%;
		bottom: 28px;
	}
}

.brand-section {
	background: #0a0a0a;
	padding: 72px 0 80px;
}

.brand-section-inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
}

.brand-section-header {
	text-align: center;
	margin-bottom: 44px;
}

.brand-section-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.26em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.35);
}

.brand-section-eyebrow::before,
.brand-section-eyebrow::after {
	content: '';
	display: block;
	width: 20px;
	height: 1px;
	background: rgba(255, 255, 255, 0.15);
}

.brand-section-title {
	font-size: clamp(17px, 1.6vw, 22px);
	font-weight: 700;
	letter-spacing: -0.03em;
	color: #fff;
}

.brand-grid-rows {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.brand-grid-row {
	--brand-gap: 12px;
	position: relative;
	overflow: hidden;
	width: 100%;
}

.brand-grid-track {
	display: flex;
	width: max-content;
	will-change: transform;
	animation: brand-marquee-left 32s linear infinite;
}

.brand-grid-row-right .brand-grid-track {
	animation-name: brand-marquee-right;
}

.brand-grid-set {
	display: flex;
	gap: var(--brand-gap);
	padding-right: var(--brand-gap);
	flex-shrink: 0;
}

@keyframes brand-marquee-left {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}

@keyframes brand-marquee-right {
	from {
		transform: translateX(-50%);
	}
	to {
		transform: translateX(0);
	}
}

.brand-grid-item {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
}

.brand-card {
	position: relative;
	overflow: visible;
	background: transparent;
	border-radius: 6px;
	width: 156px;
	height: 52px;
	border: 1px solid #808080;
	transition: transform 0.3s ease;
}

.brand-card:hover {
	transform: scale(1.04);
}

.brand-card a {
	display: flex;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
}

.brand-card > a > img,
.brand-card > img {
	width: 100%;
	height: 100%;
	max-width: none;
	max-height: none;
	object-fit: contain;
	display: block;
	padding: 15px;
	filter: brightness(0) invert(0.38);
	opacity: 0.9;
	transition: transform 0.35s ease;
}

.brand-card:hover img {
	transform: scale(1.05);
}

.brand-card-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	color: rgba(255, 255, 255, 0.25);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 12px;
	text-align: center;
}

.brand-empty {
	text-align: center;
	padding: 60px 0;
	color: rgba(255, 255, 255, 0.25);
	font-size: 13px;
	letter-spacing: 0.05em;
}

@media (max-width: 768px) {
	.brand-section {
		padding: 52px 0 60px;
	}

	.brand-section-inner {
		padding: 0 16px;
	}

	.brand-grid-row {
		--brand-gap: 8px;
	}

	.brand-grid-track {
		display: flex;
		width: max-content;
		animation: brand-marquee-left 28s linear infinite;
	}

	.brand-grid-set {
		display: flex;
		gap: var(--brand-gap);
		padding-right: var(--brand-gap);
	}

	.brand-grid-row-right .brand-grid-track {
		animation-name: brand-marquee-right;
	}

	.brand-grid-item {
		width: calc((100vw - 32px - var(--brand-gap)) / 2);
	}

	.brand-card {
		width: 100%;
		height: 50px;
	}
}

@media (max-width: 480px) {
	.brand-card {
		width: 100%;
		height: 48px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.brand-grid-track {
		animation: none;
	}
}

.service-section {
	width: 100%;
	background-color: #000;
	padding: 80px 0 90px;
	position: relative;
	overflow: hidden;
}

.service-section::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url('/images/service_bg.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transform-origin: center;
	animation: service-bg-zoom 10s ease-in-out infinite;
	z-index: 0;
}

.service-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.68);
	pointer-events: none;
	z-index: 1;
}

.service-section-inner {
	position: relative;
	z-index: 2;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
}

@keyframes service-bg-zoom {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1);
	}
}

.service-section-header {
	text-align: center;
	margin-bottom: 52px;
}

.service-section-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.26em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.4);
}

.service-section-eyebrow::before,
.service-section-eyebrow::after {
	content: '';
	display: block;
	width: 20px;
	height: 1px;
	background: rgba(255, 255, 255, 0.2);
}

.service-section-title {
	font-size: clamp(18px, 1.8vw, 24px);
	font-weight: 700;
	letter-spacing: -0.03em;
	color: #fff;
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.service-card {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	overflow: hidden;
	transition: border-color 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
	border-color: rgba(186, 0, 32, 0.5);
	transform: translateY(-4px);
}

.service-card-image {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #111;
}

.service-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.service-card:hover .service-card-image img {
	transform: scale(1.06);
}

.service-card-image-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.62) 100%);
}

.service-card-image-title {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 18px 20px 16px;
}

.service-card-number {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.22em;
	color: #BA0020;
	margin-bottom: 6px;
	text-transform: uppercase;
}

.service-card-title {
	font-size: clamp(14px, 1.2vw, 17px);
	font-weight: 700;
	letter-spacing: 0.02em;
	color: #fff;
	text-transform: uppercase;
	line-height: 1.3;
}

.service-card-body {
	padding: 20px 22px 24px;
}

.service-card-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.service-card-list li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.65);
	line-height: 1.5;
	word-break: keep-all;
}

.service-card-list li::before {
	content: '';
	flex-shrink: 0;
	display: block;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #BA0020;
	margin-top: 6px;
}

@media (max-width: 980px) {
	.service-grid {
		grid-template-columns: 1fr;
		max-width: 480px;
		margin: 0 auto;
	}
}

@media (max-width: 768px) {
	.service-section {
		padding: 60px 0 70px;
	}

	.service-section-inner {
		padding: 0 16px;
	}

	.service-section-header {
		margin-bottom: 36px;
	}
}

.gnb-header {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 20;
	width: 100%;
	padding: 24px 40px;
}

:root {
	--gnb-nav-bottom: 96px;
}

.gnb-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
}

.gnb-logo {
	display: block;
	width: min(140px, 38vw);
	height: auto;
}

.gnb-right {
	display: flex;
	align-items: center;
	gap: 36px;
}

.gnb-links {
	display: flex;
	align-items: center;
	gap: 32px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.gnb-links a {
	position: relative;
	display: inline-flex;
	align-items: center;
	padding-bottom: 8px;
	color: #fff;
	text-decoration: none;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.03em;
	white-space: nowrap;
	transition: color 0.25s ease;
	font-family: "Noto Sans KR", "Segoe UI", sans-serif;
}

.gnb-links a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: #fff;
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.28s ease;
}

.gnb-links a:hover {
	color: #BA0020;
}

.gnb-links a:hover::after {
	transform: scaleX(1);
}

.gnb-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 0;
	padding: 0;
	cursor: pointer;
	flex-shrink: 0;
}

.gnb-toggle img {
	display: block;
	width: min(34px, 8vw);
	height: auto;
}

.gnb-drawer-backdrop {
	position: fixed;
	top: var(--gnb-nav-bottom);
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.45);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
	z-index: 29;
}

.gnb-drawer {
	position: fixed;
	top: var(--gnb-nav-bottom);
	right: 0;
	width: min(84vw, 360px);
	height: calc(100vh - var(--gnb-nav-bottom));
	padding: 26px 22px;
	background: rgba(8, 8, 8, 0.97);
	border-left: 1px solid rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(8px);
	transform: translateX(100%);
	transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
	z-index: 30;
	overflow-y: auto;
}

.gnb-drawer-nav {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.gnb-drawer-nav a {
	display: block;
	padding: 10px 0;
	color: #fff;
	text-decoration: none;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.02em;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	transition: color 0.2s ease, border-color 0.2s ease;
}

.gnb-drawer-nav a:hover {
	color: #BA0020;
	border-color: rgba(186, 0, 32, 0.6);
}

body.gnb-drawer-open {
	overflow: hidden;
}

body.gnb-drawer-open .gnb-drawer {
	transform: translateX(0);
}

body.gnb-drawer-open .gnb-drawer-backdrop {
	opacity: 1;
	pointer-events: auto;
}

@media (max-width: 980px) {
	.gnb-right {
		gap: 20px;
	}

	.gnb-links {
		display: none;
	}
}

@media (max-width: 768px) {
	.gnb-header {
		padding: 20px 18px;
	}

	.gnb-logo {
		width: min(148px, 42vw);
	}

	.gnb-toggle img {
		width: 28px;
	}

	.gnb-drawer {
		width: min(88vw, 320px);
		padding: 22px 16px;
	}

	.gnb-drawer-nav a {
		font-size: 16px;
	}
}

.site-popup {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.52);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	z-index: 5000;
}

.site-popup-panel {
	position: relative;
	width: min(92vw, 560px);
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

.site-popup-close {
	position: absolute;
	top: 8px;
	right: 8px;
	z-index: 1;
	height: 30px;
	padding: 0 10px;
	border: none;
	border-radius: 4px;
	background: rgba(0, 0, 0, 0.52);
	color: #fff;
	font-size: 12px;
	cursor: pointer;
}

.site-popup-image {
	width: 100%;
	height: auto;
	display: block;
	background: #f8f8f8;
}

.site-popup-actions {
	display: flex;
	gap: 8px;
	padding: 10px;
	background: #fff;
}

.site-popup-btn {
	flex: 1;
	height: 38px;
	border: 1px solid #ddd;
	border-radius: 6px;
	background: #f5f5f5;
	color: #333;
	font-size: 13px;
	cursor: pointer;
}

.site-popup-btn-dark {
	background: #111;
	color: #fff;
	border-color: #111;
}

html.page-index2,
body.page-index2 {
	width: 100%;
	height: 100%;
	overflow: hidden;
	font-family: "Noto Sans KR", "Segoe UI", sans-serif;
	background: #000;
}

body.page-index2 {
	position: relative;
	color: #fff;
}

.page-index2 .hero-legacy {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	background: #000;
}

.page-index2 .hero-legacy video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.page-index2 .hero-legacy::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.2) 45%, rgba(0, 0, 0, 0.5) 100%);
	pointer-events: none;
}

.page-index2 .scroll-indicator-legacy {
	position: absolute;
	left: 50%;
	bottom: 32px;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	transform: translateX(-50%);
}

.page-index2 .mouse-legacy {
	position: relative;
	width: 28px;
	height: 46px;
	border: 2px solid rgba(255, 255, 255, 0.9);
	border-radius: 18px;
}

.page-index2 .mouse-legacy::before {
	content: "";
	position: absolute;
	top: 9px;
	left: 50%;
	width: 4px;
	height: 8px;
	border-radius: 999px;
	background: #fff;
	transform: translateX(-50%);
	animation: wheel-move 1.6s ease-in-out infinite;
}

.page-index2 .scroll-arrow-legacy {
	width: 14px;
	height: 14px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(45deg);
	animation: arrow-bounce 1.6s ease-in-out infinite;
}

@keyframes wheel-move {
	0% {
		opacity: 0;
		transform: translate(-50%, -2px);
	}
	30% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		transform: translate(-50%, 12px);
	}
}

@keyframes arrow-bounce {
	0%,
	100% {
		opacity: 0.4;
		transform: rotate(45deg) translateY(0);
	}
	50% {
		opacity: 1;
		transform: rotate(45deg) translateY(8px);
	}
}

@media (max-width: 768px) {
	.page-index2 .scroll-indicator-legacy {
		bottom: 24px;
	}
}

.footer-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px 16px;
}

.footer-form-grid .form-row {
	margin-bottom: 0;
}

.footer-form-grid .full-row {
	grid-column: 1 / -1;
}

@media (max-width: 900px) {
	.footer-form-grid {
		grid-template-columns: 1fr;
	}

	.footer-form-grid .full-row {
		grid-column: auto;
	}
}

.policy-page .adm-content {
	padding: 32px;
}

.policy-tabs {
	display: flex;
	gap: 8px;
	margin-bottom: 18px;
}

.policy-tab {
	height: 42px;
	padding: 0 18px;
	border-radius: 6px;
	border: 1px solid #ddd;
	background: #f8f8f8;
	color: #444;
	font-size: 14px;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.policy-tab.active {
	background: #111;
	border-color: #111;
	color: #fff;
}

.policy-card {
	max-width: 1080px;
}

.note-editor.note-frame {
	border: 1px solid #e0e0e0;
	border-radius: 8px;
}

.note-editor .note-toolbar {
	background: #fafafa;
	border-bottom: 1px solid #ececec;
}

.note-editor .note-editing-area .note-editable {
	min-height: 420px;
	line-height: 1.7;
	font-size: 15px;
	color: #222;
}

.policy-meta {
	margin-bottom: 12px;
	color: #777;
	font-size: 13px;
}

.popup-thumb {
	width: 140px;
	height: 70px;
	object-fit: cover;
	border: 1px solid #e8e8e8;
	border-radius: 6px;
	background: #fafafa;
}

.popup-no-image {
	color: #999;
	font-size: 13px;
}

.popup-preview-image {
	margin-top: 8px;
	max-width: 320px;
	width: 100%;
	border: 1px solid #e8e8e8;
	border-radius: 8px;
	display: block;
}

/* ══════════════════════════════════════════════
   관리자 페이지 공통 스타일
══════════════════════════════════════════════ */
.adm-layout {
	display: flex;
	min-height: 100vh;
	background: #f8fafc;
	color: #111827;
}

.adm-nav {
	width: 260px;
	padding: 24px 18px;
	background: #0f172a;
	color: #f8fafc;
}

.adm-nav-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.adm-nav-link {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	border-radius: 10px;
	color: #cbd5e1;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.adm-nav-link:hover,
.adm-nav-link.active {
	background: #111827;
	color: #ffffff;
}

.adm-content {
	flex: 1;
	padding: 32px;
}

.adm-page-title {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 8px;
	color: #111827;
}

.adm-page-sub {
	font-size: 14px;
	color: #64748b;
	margin-bottom: 20px;
}

.adm-head-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 16px;
}

.adm-section-title {
	font-size: 16px;
	font-weight: 700;
	color: #111827;
}

.adm-inline-title {
	display: inline-flex;
	align-items: center;
}

.alert {
	padding: 12px 14px;
	border-radius: 10px;
	margin-bottom: 16px;
	font-size: 14px;
}

.alert-success {
	background: #ecfdf3;
	color: #065f46;
	border: 1px solid #a7f3d0;
}

.alert-error {
	background: #fef2f2;
	color: #b91c1c;
	border: 1px solid #fecaca;
}

.btn-secondary,
.btn-danger,
.btn-save {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 9px 14px;
	border-radius: 10px;
	border: 1px solid #d1d5db;
	background: #ffffff;
	color: #111827;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
}

.btn-secondary:hover {
	background: #f3f4f6;
}

.btn-danger {
	border-color: #fecaca;
	background: #fff1f2;
	color: #be123c;
}

.btn-save {
	border: 0;
	background: #111827;
	color: #ffffff;
}

.adm-inline-actions {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.adm-table-wrap {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.adm-table {
	width: 100%;
	border-collapse: collapse;
}

.adm-table th,
.adm-table td {
	padding: 12px 14px;
	border-bottom: 1px solid #e5e7eb;
	text-align: left;
	font-size: 14px;
}

.adm-table thead th {
	background: #f8fafc;
	font-weight: 700;
	color: #334155;
}

.adm-empty {
	padding: 24px 16px;
	border: 1px dashed #d1d5db;
	border-radius: 12px;
	background: #ffffff;
	text-align: center;
	color: #64748b;
}

.adm-pagination {
	display: flex;
	gap: 8px;
	margin-top: 16px;
	flex-wrap: wrap;
}

.adm-page-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 12px;
	border-radius: 999px;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	color: #334155;
	text-decoration: none;
}

.adm-page-link.active {
	background: #111827;
	border-color: #111827;
	color: #ffffff;
}

@media (max-width: 900px) {
	.adm-layout {
		flex-direction: column;
	}

	.adm-nav {
		width: 100%;
	}

	.adm-content {
		padding: 20px;
	}
}

/* ══════════════════════════════════════════════
   FAQ 섹션
══════════════════════════════════════════════ */
.faq-section {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(900px 420px at 8% -20%, rgba(186, 0, 32, 0.22), transparent 62%),
		radial-gradient(760px 360px at 92% 115%, rgba(255, 255, 255, 0.08), transparent 64%),
		linear-gradient(180deg, #0a0a0a 0%, #101114 100%);
	padding: 80px 0 88px;
}

.faq-section::before,
.faq-section::after {
	content: '';
	position: absolute;
	pointer-events: none;
	z-index: 0;
}

.faq-section::before {
	width: 280px;
	height: 280px;
	left: -120px;
	top: 44px;
	background: radial-gradient(circle, rgba(186, 0, 32, 0.3) 0%, rgba(186, 0, 32, 0) 72%);
	filter: blur(2px);
}

.faq-section::after {
	width: 420px;
	height: 420px;
	right: -180px;
	bottom: -220px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 70%);
}

.faq-section-inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
	position: relative;
	z-index: 1;
}

.faq-section-header {
	text-align: center;
	margin-bottom: 48px;
}

.faq-section-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.26em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.35);
}

.faq-section-eyebrow::before,
.faq-section-eyebrow::after {
	content: '';
	display: block;
	width: 20px;
	height: 1px;
	background: rgba(255, 255, 255, 0.15);
}

.faq-section-title {
	font-size: clamp(18px, 1.8vw, 24px);
	font-weight: 700;
	letter-spacing: -0.03em;
	color: #fff;
}

.faq-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.faq-empty {
	grid-column: 1 / -1;
	padding: 28px 4px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.02);
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
	text-align: center;
	letter-spacing: -0.01em;
}

.faq-item {
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.03);
	backdrop-filter: blur(4px);
	transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover {
	border-color: rgba(255, 255, 255, 0.22);
	background: rgba(255, 255, 255, 0.05);
}

.faq-question {
	width: 100%;
	background: none;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 22px 20px;
	text-align: left;
	color: #fff;
	font-family: "Noto Sans KR", "Segoe UI", sans-serif;
	font-size: clamp(14px, 1.1vw, 16px);
	font-weight: 500;
	letter-spacing: -0.01em;
	line-height: 1.5;
	transition: color 0.2s ease;
}

.faq-question:hover {
	color: rgba(255, 255, 255, 0.75);
}

.faq-item.is-open .faq-question {
	color: #BA0020;
}

.faq-item.is-open {
	border-color: rgba(186, 0, 32, 0.6);
	background: rgba(186, 0, 32, 0.08);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.faq-question-text {
	flex: 1;
}

.faq-question-icon {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question-icon svg {
	width: 16px;
	height: 16px;
	color: rgba(255, 255, 255, 0.45);
	transition: color 0.2s ease;
}

.faq-item.is-open .faq-question-icon {
	transform: rotate(45deg);
}

.faq-item.is-open .faq-question-icon svg {
	color: #BA0020;
}

.faq-answer {
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.28s ease;
}

.faq-item.is-open .faq-answer {
	max-height: 600px;
	opacity: 1;
}

.faq-answer-inner {
	padding: 0 20px 22px;
	font-size: clamp(13px, 1vw, 14px);
	color: rgba(255, 255, 255, 0.55);
	line-height: 1.85;
	letter-spacing: -0.005em;
	word-break: keep-all;
}

@media (max-width: 768px) {
	.faq-section {
		padding: 60px 0 68px;
	}

	.faq-section-inner {
		padding: 0 20px;
	}

	.faq-section-header {
		margin-bottom: 36px;
	}

	.faq-list {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.faq-question {
		padding: 18px 14px;
		font-size: 14px;
	}

	.faq-answer-inner {
		padding: 0 14px 18px;
		font-size: 13px;
	}
}

/* ══════════════════════════════════════════════
   CTA 배너
══════════════════════════════════════════════ */
.cta-banner {
	width: 100%;
	background: #000 url('/images/cta_bg.jpg') center center / cover no-repeat;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 90px 40px;
}

.cta-banner-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.cta-banner-content {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.cta-banner-eyebrow {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.26em;
	text-transform: uppercase;
	color: #BA0020;
}

.cta-banner-title {
	font-size: clamp(22px, 2.8vw, 40px);
	font-weight: 700;
	letter-spacing: -0.035em;
	color: #fff;
	line-height: 1.3;
	word-break: keep-all;
}

.cta-banner-desc {
	font-size: clamp(13px, 1.1vw, 15px);
	color: rgba(255, 255, 255, 0.45);
	line-height: 1.8;
	word-break: keep-all;
}

.cta-banner-btn {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 36px;
	background: #BA0020;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.08em;
	cursor: pointer;
	transition: background 0.25s ease, transform 0.2s ease;
	white-space: nowrap;
}

.cta-banner-btn:hover {
	background: #970019;
	transform: translateY(-2px);
}

.cta-banner-btn svg {
	transition: transform 0.25s ease;
}

.cta-banner-btn:hover svg {
	transform: translate(2px, -2px);
}

@media (max-width: 768px) {
	.cta-banner {
		padding: 60px 20px;
	}

	.cta-banner-inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 28px;
	}

	.cta-banner-btn {
		width: 100%;
		justify-content: center;
		padding: 16px 24px;
	}
}

/* ══════════════════════════════════════════════
   문의 오버레이
══════════════════════════════════════════════ */
.inquiry-overlay {
	position: fixed;
	inset: 0;
	z-index: 9000;
	background: rgba(0, 0, 0, 0.72);
	display: flex;
	align-items: flex-end;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.35s ease;
}

.inquiry-overlay.is-active {
	opacity: 1;
	pointer-events: auto;
}

.inquiry-overlay[hidden] {
	display: none !important;
}

.inquiry-panel {
	width: 100%;
	max-width: 860px;
	max-height: 92vh;
	background: #0a0a0a;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-bottom: none;
	border-radius: 16px 16px 0 0;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transform: translateY(100%);
	transition: transform 0.42s cubic-bezier(0.32, 0.72, 0, 1);
}

.inquiry-overlay.is-active .inquiry-panel {
	transform: translateY(0);
}

.inquiry-panel-header {
	flex-shrink: 0;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding: 28px 32px 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.inquiry-panel-title-wrap {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.inquiry-panel-eyebrow {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.26em;
	color: #BA0020;
	text-transform: uppercase;
}

.inquiry-panel-title {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: -0.03em;
	color: #fff;
}

.inquiry-close-btn {
	background: transparent;
	border: none;
	color: rgba(255, 255, 255, 0.45);
	cursor: pointer;
	padding: 4px;
	line-height: 1;
	transition: color 0.2s;
	flex-shrink: 0;
}

.inquiry-close-btn:hover {
	color: #fff;
}

.inquiry-panel-body {
	flex: 1;
	overflow-y: auto;
	padding: 28px 32px 40px;
	scrollbar-width: thin;
	scrollbar-color: rgba(255,255,255,0.15) transparent;
}

.inquiry-panel-body::-webkit-scrollbar {
	width: 4px;
}

.inquiry-panel-body::-webkit-scrollbar-track {
	background: transparent;
}

.inquiry-panel-body::-webkit-scrollbar-thumb {
	background: rgba(255,255,255,0.15);
	border-radius: 999px;
}

.inquiry-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.inquiry-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.inquiry-field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.inquiry-field-full {
	grid-column: 1 / -1;
}

.inquiry-label {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
}

.inquiry-required {
	color: #BA0020;
	margin-left: 2px;
}

.inquiry-input,
.inquiry-textarea {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 6px;
	padding: 12px 14px;
	color: #fff;
	font-size: 14px;
	font-family: inherit;
	outline: none;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.inquiry-input::placeholder,
.inquiry-textarea::placeholder {
	color: rgba(255, 255, 255, 0.2);
}

.inquiry-input:focus,
.inquiry-textarea:focus {
	border-color: rgba(186, 0, 32, 0.7);
	background: rgba(255, 255, 255, 0.07);
}

.inquiry-textarea {
	resize: vertical;
	min-height: 110px;
}

.inquiry-radio-group {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.inquiry-radio-label {
	display: flex;
	align-items: center;
	cursor: pointer;
}

.inquiry-radio-label input[type="radio"] {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.inquiry-radio-label span {
	display: inline-flex;
	align-items: center;
	padding: 8px 16px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 999px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.06em;
	color: rgba(255, 255, 255, 0.5);
	transition: border-color 0.2s, color 0.2s, background 0.2s;
	user-select: none;
}

.inquiry-radio-label input[type="radio"]:checked + span {
	border-color: #BA0020;
	color: #fff;
	background: rgba(186, 0, 32, 0.15);
}

.inquiry-radio-label:hover span {
	border-color: rgba(255, 255, 255, 0.3);
	color: rgba(255, 255, 255, 0.8);
}

.inquiry-privacy-label {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
}

.inquiry-privacy-check {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	accent-color: #BA0020;
	cursor: pointer;
}

.inquiry-privacy-text {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.55);
	line-height: 1.5;
}

.inquiry-privacy-detail-btn {
	margin-top: 6px;
	background: transparent;
	border: none;
	color: rgba(255, 255, 255, 0.35);
	font-size: 12px;
	cursor: pointer;
	padding: 0;
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: color 0.2s;
}

.inquiry-privacy-detail-btn:hover {
	color: rgba(255, 255, 255, 0.7);
}

.inquiry-submit-wrap {
	margin-top: 8px;
}

.inquiry-submit-btn {
	width: 100%;
	padding: 16px 24px;
	background: #BA0020;
	color: #fff;
	border: none;
	border-radius: 6px;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.06em;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.15s ease;
}

.inquiry-submit-btn:hover {
	background: #970019;
	transform: translateY(-1px);
}

.inquiry-submit-btn:active {
	transform: translateY(0);
}

@media (max-width: 640px) {
	.inquiry-panel-header {
		padding: 22px 20px 16px;
	}

	.inquiry-panel-body {
		padding: 20px 20px 32px;
	}

	.inquiry-row {
		grid-template-columns: 1fr;
	}

	.inquiry-radio-group {
		gap: 8px;
	}

	.inquiry-radio-label span {
		font-size: 11px;
		padding: 7px 13px;
	}
}

/* ══════════════════════════════════════════════
   개인정보 모달
══════════════════════════════════════════════ */
.privacy-modal {
	position: fixed;
	inset: 0;
	z-index: 9500;
	background: rgba(0, 0, 0, 0.78);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease;
}

.privacy-modal.is-active {
	opacity: 1;
	pointer-events: auto;
}

.privacy-modal[hidden] {
	display: none !important;
}

.privacy-modal-panel {
	width: 100%;
	max-width: 560px;
	max-height: 80vh;
	background: #111;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transform: scale(0.95) translateY(12px);
	transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.privacy-modal.is-active .privacy-modal-panel {
	transform: scale(1) translateY(0);
}

.privacy-modal-header {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 24px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.privacy-modal-title {
	font-size: 15px;
	font-weight: 700;
	color: #fff;
	letter-spacing: -0.02em;
}

.privacy-modal-close {
	background: transparent;
	border: none;
	color: rgba(255, 255, 255, 0.4);
	cursor: pointer;
	padding: 4px;
	line-height: 1;
	transition: color 0.2s;
}

.privacy-modal-close:hover {
	color: #fff;
}

.privacy-modal-body {
	flex: 1;
	overflow-y: auto;
	padding: 20px 24px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.55);
	line-height: 1.85;
	word-break: keep-all;
	scrollbar-width: thin;
	scrollbar-color: rgba(255,255,255,0.12) transparent;
}

.privacy-modal-body::-webkit-scrollbar {
	width: 4px;
}

.privacy-modal-body::-webkit-scrollbar-track {
	background: transparent;
}

.privacy-modal-body::-webkit-scrollbar-thumb {
	background: rgba(255,255,255,0.12);
	border-radius: 999px;
}

.privacy-modal-body p {
	margin-bottom: 14px;
}

.privacy-modal-body p:last-child {
	margin-bottom: 0;
}

.privacy-modal-body strong {
	display: block;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 4px;
	font-size: 12px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.privacy-modal-footer {
	flex-shrink: 0;
	padding: 16px 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.privacy-modal-agree-btn {
	width: 100%;
	padding: 13px 20px;
	background: #BA0020;
	color: #fff;
	border: none;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.06em;
	cursor: pointer;
	transition: background 0.2s;
}

.privacy-modal-agree-btn:hover {
	background: #970019;
}

body.master-login {
	font-family: 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
	min-height: 100vh;
	display: flex;
	background: #0d0d0d;
	color: #fff;
}

body.master-login .panel-left {
	width: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 80px 72px;
	background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
	position: relative;
	overflow: hidden;
}

body.master-login .panel-left::before {
	content: '';
	position: absolute;
	top: -120px;
	left: -80px;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(180,150,100,0.12) 0%, transparent 70%);
	pointer-events: none;
}

body.master-login .brand-title {
	font-size: clamp(32px, 3vw, 48px);
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.02em;
	margin: 0;
	color: #fff;
	text-align: center;
}

body.master-login .brand-title span {
	color: #b49664;
}

body.master-login .panel-right {
	width: 50%;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 80px 56px;
	background: #fff;
	color: #111;
}

body.master-login .login-head {
	margin-bottom: 48px;
}

body.master-login .login-label {
	font-size: 12px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #b49664;
	font-weight: 600;
	margin-bottom: 12px;
}

body.master-login .login-title {
	font-size: 28px;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #111;
}

body.master-login .login-sub {
	margin-top: 8px;
	font-size: 14px;
	color: #888;
}

body.master-login .form-group {
	margin-bottom: 24px;
}

body.master-login .form-group label {
	display: block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #555;
	margin-bottom: 8px;
}

body.master-login .form-group input {
	width: 100%;
	height: 52px;
	border: 1.5px solid #e0e0e0;
	border-radius: 6px;
	padding: 0 16px;
	font-size: 15px;
	color: #111;
	background: #fafafa;
	transition: border-color 0.2s, box-shadow 0.2s;
	outline: none;
}

body.master-login .form-group input:focus {
	border-color: #b49664;
	background: #fff;
	box-shadow: 0 0 0 3px rgba(180,150,100,0.12);
}

body.master-login .error-msg {
	background: #fff3f3;
	border: 1px solid #ffc5c5;
	border-radius: 6px;
	padding: 12px 16px;
	font-size: 13px;
	color: #d93025;
	margin-bottom: 24px;
}

body.master-login .btn-login {
	width: 100%;
	height: 52px;
	background: #111;
	color: #fff;
	border: none;
	border-radius: 6px;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.04em;
	cursor: pointer;
	transition: background 0.2s;
}

body.master-login .btn-login:hover {
	background: #b49664;
}

body.master-login .login-footer {
	margin-top: 40px;
	padding-top: 32px;
	border-top: 1px solid #f0f0f0;
	font-size: 12px;
	color: #bbb;
	text-align: center;
}

@media (max-width: 900px) {
	body.master-login {
		flex-direction: column;
	}

	body.master-login .panel-left {
		padding: 60px 32px 48px;
	}

	body.master-login .panel-right {
		width: 100%;
		padding: 48px 32px;
	}
}

/* ── Site Footer ────────────────────────────── */
.site-footer {
	background: #000;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 48px 0 32px;
	color: rgba(255, 255, 255, 0.55);
	font-family: "Noto Sans KR", "Segoe UI", sans-serif;
	position: relative;
	z-index: 40;
}

.site-footer-inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
}

.site-footer-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
	flex-wrap: wrap;
	gap: 16px;
}

.site-footer-logo {
	display: inline-flex;
	align-items: center;
	line-height: 1;
}

.site-footer-logo img {
	width: auto;
	height: 26px;
	display: block;
	/* logo.png를 흰색 계열로 표시 */
	filter: brightness(0) invert(1);
}

.site-footer-policy-links {
	display: flex;
	align-items: center;
	gap: 12px;
}

.footer-policy-btn {
	background: transparent;
	border: none;
	color: rgba(255, 255, 255, 0.55);
	font-size: 13px;
	font-family: inherit;
	cursor: pointer;
	padding: 0;
	letter-spacing: 0.02em;
	transition: color 0.2s;
}

.footer-policy-btn:hover {
	color: #fff;
}

.footer-policy-btn--em {
	font-weight: 600;
	color: rgba(255, 255, 255, 0.75);
}

.footer-policy-btn--em:hover {
	color: #fff;
}

.footer-policy-divider {
	color: rgba(255, 255, 255, 0.2);
	font-size: 12px;
	user-select: none;
}

.site-footer-address {
	font-size: 13px;
	line-height: 1.9;
	color: rgba(255, 255, 255, 0.45);
	font-style: normal;
	margin-bottom: 16px;
}

.footer-sep {
	margin: 0 8px;
	color: rgba(255, 255, 255, 0.2);
}

.site-footer-copy {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.28);
	letter-spacing: 0.03em;
}

/* ── Footer Policy Modals ───────────────────── */
.footer-modal {
	position: fixed;
	inset: 0;
	z-index: 9800;
	background: rgba(0, 0, 0, 0.78);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.28s ease;
	backdrop-filter: blur(4px);
}

.footer-modal.is-active {
	opacity: 1;
	pointer-events: auto;
}

.footer-modal[hidden] {
	display: none !important;
}

.footer-modal-panel {
	width: 100%;
	max-width: 640px;
	max-height: 80vh;
	background: #111;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transform: scale(0.95) translateY(12px);
	transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-modal.is-active .footer-modal-panel {
	transform: scale(1) translateY(0);
}

.footer-modal-header {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 24px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-modal-title {
	font-size: 15px;
	font-weight: 700;
	color: #fff;
	letter-spacing: -0.02em;
}

.footer-modal-close {
	background: transparent;
	border: none;
	color: rgba(255, 255, 255, 0.55);
	cursor: pointer;
	padding: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color 0.2s;
}

.footer-modal-close:hover {
	color: #fff;
}

.footer-modal-body {
	flex: 1;
	overflow-y: auto;
	padding: 24px;
	font-size: 14px;
	line-height: 1.85;
	color: rgba(255, 255, 255, 0.65);
	/* 스크롤은 가능하지만 스크롤바는 숨김 */
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.footer-modal-body::-webkit-scrollbar {
	width: 0;
	height: 0;
}

.footer-modal-body p {
	margin-bottom: 16px;
}

.footer-modal-body strong {
	color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 600px) {
	.site-footer-inner {
		padding: 0 20px;
	}

	.site-footer-top {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

	.site-footer-address {
		font-size: 12px;
	}

	.footer-modal {
		padding: 16px;
	}

	.footer-modal-panel {
		max-height: 88vh;
	}
}

/* Floating Contact — gnb.php 인라인 스타일로 관리 */
