:root {
	--ink: #121416;
	--ink-soft: #25292d;
	--paper: #ffffff;
	--surface: #f3f5f5;
	--line: #d9dddc;
	--muted: #6d7376;
	--red: #b42318;
	--red-dark: #861910;
	--green: #24423f;
	--gold: #b89455;
	--max-width: 1240px;
	--header-height: 78px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	width: 100%;
	max-width: 100%;
	overflow-x: hidden;
}

body {
	margin: 0;
	width: 100%;
	max-width: 100%;
	overflow-x: hidden;
	color: var(--ink);
	background: var(--paper);
	font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
	font-size: 16px;
	line-height: 1.6;
	letter-spacing: 0;
	word-break: keep-all;
	-webkit-font-smoothing: antialiased;
}

small,
sub,
sup {
	font-size: 14px;
}

body.menu-open,
body.modal-open {
	overflow: hidden;
}

img,
video {
	display: block;
	max-width: 100%;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
select,
textarea {
	font: inherit;
	letter-spacing: 0;
}

button {
	color: inherit;
}

.skip-link {
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 9999;
	padding: 10px 14px;
	color: #fff;
	background: var(--red);
	transform: translateY(-160%);
}

.skip-link:focus {
	transform: translateY(0);
}

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	width: 100%;
	height: var(--header-height);
	color: #fff;
	border-bottom: 1px solid rgba(255, 255, 255, .18);
	transition: background-color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled,
.case-page .site-header {
	color: var(--ink);
	background: rgba(255, 255, 255, .96);
	border-color: rgba(18, 20, 22, .12);
	box-shadow: 0 8px 30px rgba(18, 20, 22, .07);
	backdrop-filter: blur(16px);
}

.header-inner {
	width: min(calc(100% - 56px), var(--max-width));
	height: 100%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	min-width: 0;
}

.brand-mark {
	width: 38px;
	height: 38px;
	display: grid;
	flex: 0 0 auto;
	place-items: center;
	color: #fff;
	background: var(--red);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
}

.brand-copy {
	display: grid;
	line-height: 1.1;
}

.brand-copy strong {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 18px;
	font-weight: 700;
}

.brand-copy small {
	margin-top: 4px;
	font-size: 14px;
	font-weight: 700;
	opacity: .78;
}

.desktop-nav {
	display: flex;
	align-items: center;
	gap: 30px;
	font-size: 16px;
	font-weight: 700;
}

.desktop-nav a {
	position: relative;
	padding: 12px 0;
}

.desktop-nav a:not(.nav-apply):not(.nav-admin)::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 7px;
	left: 0;
	height: 2px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .2s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
	transform: scaleX(1);
	transform-origin: left;
}

.desktop-nav .nav-apply {
	padding: 11px 16px;
	color: #fff;
	background: var(--red);
}

.desktop-nav .nav-admin {
	width: 60px;
	height: 42px;
	display: grid;
	flex: 0 0 auto;
	place-items: center;
	padding: 0;
	border-left: 1px solid rgba(255, 255, 255, .26);
}

@media (min-width: 901px) and (max-width: 1180px) {
	.header-inner {
		width: calc(100% - 32px);
	}

	.desktop-nav {
		gap: 17px;
		font-size: 14px;
	}

	.desktop-nav .nav-apply {
		padding-right: 13px;
		padding-left: 13px;
	}

	.desktop-nav .nav-admin {
		width: 46px;
	}
}

.nav-admin img,
.mobile-admin-link img {
	width: 21px;
	height: 21px;
	object-fit: contain;
}

.nav-admin img {
	filter: brightness(0) invert(1);
	transition: filter .25s ease, transform .35s cubic-bezier(.22, 1, .36, 1);
}

.nav-admin:hover img,
.nav-admin:focus-visible img {
	transform: rotate(52deg);
}

.site-header.is-scrolled .nav-admin,
.case-page .site-header .nav-admin {
	border-left-color: rgba(18, 20, 22, .16);
}

.site-header.is-scrolled .nav-admin img,
.case-page .site-header .nav-admin img {
	filter: none;
}

.menu-button {
	width: 42px;
	height: 42px;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 0;
	color: inherit;
	background: transparent;
	border: 0;
	cursor: pointer;
}

.menu-button svg {
	width: 24px;
	height: 24px;
}

.menu-button .menu-button-close,
.menu-button[aria-expanded="true"] .menu-button-open {
	display: none;
}

.menu-button[aria-expanded="true"] .menu-button-close {
	display: block;
	animation: mobile-menu-close-icon .35s cubic-bezier(.22, 1, .36, 1) both;
}

@media (max-width: 1100px) {
	.desktop-nav {
		display: none;
	}

	.menu-button {
		display: flex;
	}
}

body.menu-open .site-header {
	color: #fff;
	background: #182a27;
	border-color: rgba(255, 255, 255, .12);
	box-shadow: none;
	backdrop-filter: none;
}

.mobile-nav {
	position: fixed;
	top: var(--header-height);
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 999;
	padding: 0;
	color: #fff;
	background: #182a27;
	overflow-x: hidden;
	overflow-y: auto;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
	isolation: isolate;
}

.mobile-nav[hidden] {
	display: none;
}

.mobile-nav::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	right: 21%;
	bottom: 0;
	width: 1px;
	background: rgba(255, 255, 255, .055);
	pointer-events: none;
}

.mobile-nav:not([hidden]) {
	animation: mobile-nav-panel-in .48s cubic-bezier(.16, 1, .3, 1) both;
}

.mobile-nav-inner {
	width: min(100%, 560px);
	min-height: 100%;
	display: flex;
	flex-direction: column;
	margin-left: auto;
	padding: 28px 24px calc(28px + env(safe-area-inset-bottom));
}

.mobile-nav-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin: 0 0 14px;
	padding-bottom: 15px;
	border-bottom: 1px solid rgba(255, 255, 255, .16);
	font-size: 14px;
	line-height: 1;
}

.mobile-nav-heading span {
	color: #ddc18b;
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 700;
}

.mobile-nav-heading strong {
	color: rgba(255, 255, 255, .54);
	font-size: 14px;
	letter-spacing: 0;
}

.mobile-nav-list {
	display: grid;
}

.mobile-nav-list > a {
	position: relative;
	min-height: 68px;
	display: grid;
	grid-template-columns: 36px minmax(0, 1fr) 28px;
	gap: 12px;
	align-items: center;
	color: #fff;
	border-bottom: 1px solid rgba(255, 255, 255, .15);
	font-size: 25px;
	font-weight: 750;
	line-height: 1.25;
	opacity: 0;
	clip-path: inset(0 100% 0 0);
	transform: translateX(22px);
	animation: mobile-nav-link-in .62s cubic-bezier(.16, 1, .3, 1) both;
}

.mobile-nav-list > a::before {
	content: attr(data-order);
	color: #ddc18b;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 14px;
	font-weight: 700;
}

.mobile-nav-list > a:nth-child(1) { animation-delay: .09s; }
.mobile-nav-list > a:nth-child(2) { animation-delay: .15s; }
.mobile-nav-list > a:nth-child(3) { animation-delay: .21s; }
.mobile-nav-list > a:nth-child(4) { animation-delay: .27s; }
.mobile-nav-list > a:nth-child(5) { animation-delay: .33s; }
.mobile-nav-list > a:nth-child(6) { animation-delay: .39s; }
.mobile-nav-list > a:nth-child(7) { animation-delay: .45s; }

.mobile-nav-list > a > svg {
	width: 19px;
	height: 19px;
	justify-self: end;
	transition: transform .3s cubic-bezier(.22, 1, .36, 1);
}

.mobile-nav-list > a:hover > svg,
.mobile-nav-list > a:focus-visible > svg {
	transform: translate(3px, -3px);
}

.mobile-nav-list > a.is-current::after {
	content: "";
	position: absolute;
	top: 50%;
	left: -24px;
	width: 4px;
	height: 28px;
	background: var(--red);
	transform: translateY(-50%);
}

.mobile-nav-list > a.is-current > span {
	color: #f5dfb6;
}

.mobile-nav-list > a.mobile-nav-apply {
	min-height: 64px;
	margin-top: 18px;
	padding: 0 17px;
	background: var(--red);
	border: 0;
	grid-template-columns: 36px minmax(0, 1fr) 28px;
}

.mobile-nav-list > a.mobile-nav-apply::before {
	color: rgba(255, 255, 255, .65);
}

.mobile-nav-utility {
	margin-top: auto;
	padding-top: 28px;
	opacity: 0;
	transform: translateX(22px);
	animation: mobile-nav-utility-in .68s .37s cubic-bezier(.16, 1, .3, 1) both;
}

.mobile-admin-link {
	min-height: 66px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 10px 14px;
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(255, 255, 255, .14);
}

.mobile-admin-link > span:first-child {
	display: grid;
	gap: 3px;
}

.mobile-admin-link small {
	color: #ddc18b;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 14px;
	font-weight: 700;
}

.mobile-admin-link strong {
	font-size: 17px;
}

.mobile-admin-icon {
	width: 38px;
	height: 38px;
	display: grid;
	flex: 0 0 auto;
	place-items: center;
	background: #fff;
}

.mobile-admin-icon img {
	width: 20px;
	height: 20px;
	transition: transform .35s cubic-bezier(.22, 1, .36, 1);
}

.mobile-admin-link:hover .mobile-admin-icon img,
.mobile-admin-link:focus-visible .mobile-admin-icon img {
	transform: rotate(52deg);
}

.mobile-nav-utility > p {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin: 16px 0 0;
	color: rgba(255, 255, 255, .54);
	font-size: 14px;
}

.mobile-nav-utility > p a {
	color: #fff;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 17px;
	font-weight: 700;
}

@keyframes mobile-nav-panel-in {
	from { clip-path: inset(0 0 0 100%); }
	to { clip-path: inset(0 0 0 0); }
}

@keyframes mobile-nav-link-in {
	to {
		opacity: 1;
		clip-path: inset(0 0 0 0);
		transform: translateX(0);
	}
}

@keyframes mobile-nav-utility-in {
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes mobile-menu-close-icon {
	from {
		opacity: 0;
		transform: rotate(-40deg) scale(.78);
	}
	to {
		opacity: 1;
		transform: rotate(0) scale(1);
	}
}

[data-kinetic-title]:not(.is-split),
[data-kinetic-copy]:not(.kinetic-copy) {
	visibility: hidden;
	opacity: 0;
}

.kinetic-title {
	perspective: 900px;
}

.kinetic-title .title-line {
	display: block;
}

.kinetic-title .title-word {
	display: inline-block;
	white-space: nowrap;
}

.kinetic-title .title-space {
	display: inline-block;
	width: .3em;
}

.kinetic-title .title-char {
	display: inline-block;
	opacity: 0;
	filter: blur(5px);
	transform: translate3d(0, -.28em, 0) rotateX(-18deg);
	transform-origin: 50% 100%;
	will-change: opacity, filter, transform;
}

.kinetic-title.is-active .title-char {
	animation: kinetic-title-char .74s cubic-bezier(.16, 1, .3, 1) both;
	animation-delay: calc(var(--title-delay, 0ms) + (var(--char-index) * 70ms));
}

.kinetic-copy {
	opacity: 0;
	clip-path: inset(0 100% 0 0);
	filter: blur(4px);
	transform: translate3d(-18px, 0, 0);
}

.kinetic-copy.is-active {
	animation: kinetic-copy-reveal .9s var(--copy-delay, 900ms) cubic-bezier(.16, 1, .3, 1) both;
}

@keyframes kinetic-title-char {
	55% {
		opacity: 1;
		filter: blur(0);
	}
	to {
		opacity: 1;
		filter: blur(0);
		transform: translate3d(0, 0, 0) rotateX(0);
	}
}

@keyframes kinetic-copy-reveal {
	to {
		opacity: 1;
		clip-path: inset(0 0 0 0);
		filter: blur(0);
		transform: translate3d(0, 0, 0);
	}
}

.motion-reveal {
	--motion-ease: cubic-bezier(.16, 1, .3, 1);
	transition-delay: var(--motion-delay, 0ms) !important;
	will-change: opacity, clip-path, filter, transform;
}

.motion-clip-x {
	opacity: 0;
	clip-path: inset(0 94% 0 0);
	transform: translate3d(-28px, 0, 0);
	transition:
		opacity .74s var(--motion-ease),
		clip-path .94s var(--motion-ease),
		transform .94s var(--motion-ease);
}

.motion-copy-sweep {
	opacity: 0;
	filter: blur(5px);
	transform: translate3d(42px, 0, 0);
	transition:
		opacity .72s var(--motion-ease),
		filter .86s var(--motion-ease),
		transform .86s var(--motion-ease);
}

.motion-image-shutter {
	opacity: 0;
	clip-path: inset(0 94% 0 0);
	transform: scale(.985);
	transform-origin: left center;
	transition:
		opacity .3s ease,
		clip-path 1.08s var(--motion-ease),
		transform 1.08s var(--motion-ease);
}

.motion-step-open {
	opacity: 0;
	clip-path: inset(0 0 94% 0);
	transform: perspective(900px) rotateX(-9deg);
	transform-origin: top center;
	transition:
		opacity .52s ease,
		clip-path .88s var(--motion-ease),
		transform .88s var(--motion-ease);
}

.motion-card-turn {
	opacity: 0;
	filter: saturate(.45);
	transform: perspective(1100px) rotateY(9deg) scale(.975);
	transform-origin: left center;
	transition:
		opacity .62s ease,
		filter .86s ease,
		transform .92s var(--motion-ease);
}

.motion-document-uncover {
	opacity: 0;
	clip-path: inset(0 0 0 94%);
	filter: grayscale(1);
	transform: translate3d(18px, 0, 0);
	transition:
		opacity .58s ease,
		clip-path .88s var(--motion-ease),
		filter 1s ease,
		transform .88s var(--motion-ease);
}

.motion-counter-pop {
	opacity: 0;
	transform: scale(.82);
	transform-origin: center;
	transition:
		opacity .45s ease,
		transform .72s cubic-bezier(.2, 1.55, .35, 1);
}

.motion-article-scan {
	opacity: .08;
	clip-path: inset(0 0 0 94%);
	transform: translate3d(24px, 0, 0);
	transition:
		opacity .7s ease,
		clip-path .98s var(--motion-ease),
		transform .98s var(--motion-ease);
}

.motion-cta-open {
	opacity: 0;
	clip-path: inset(0 47% 0 47%);
	transform: scale(.97);
	transition:
		opacity .58s ease,
		clip-path .9s var(--motion-ease),
		transform .9s var(--motion-ease);
}

.motion-reveal.is-visible {
	opacity: 1;
	clip-path: inset(0 0 0 0);
	filter: none;
	transform: none;
	will-change: auto;
}

.site-footer {
	color: rgba(255, 255, 255, .76);
	background: #111315;
	border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-inner {
	width: min(calc(100% - 56px), var(--max-width));
	margin: 0 auto;
	padding: 70px 0 38px;
	display: grid;
	grid-template-columns: 260px minmax(0, 1fr);
	gap: 38px 72px;
}

.footer-brand {
	display: grid;
	align-content: start;
	gap: 5px;
}

.footer-brand strong {
	color: #fff;
	font-size: 20px;
}

.footer-brand span {
	color: var(--gold);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 14px;
}

.footer-info p {
	margin: 0 0 6px;
	font-size: 15px;
}

.footer-info a:hover {
	color: #fff;
	text-decoration: underline;
}

.footer-links {
	grid-column: 2;
	display: flex;
	flex-wrap: wrap;
	gap: 12px 24px;
	font-size: 15px;
	font-weight: 600;
}

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

.copyright {
	grid-column: 1 / -1;
	margin: 12px 0 0;
	padding-top: 24px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 14px;
	border-top: 1px solid rgba(255, 255, 255, .12);
}

.mobile-apply-bar {
	position: fixed;
	right: 16px;
	bottom: calc(16px + env(safe-area-inset-bottom));
	z-index: 900;
	min-width: 188px;
	height: 54px;
	display: none;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 0 18px;
	color: #fff;
	background: var(--red);
	box-shadow: 0 12px 28px rgba(44, 11, 8, .27);
	font-size: 16px;
	font-weight: 800;
	transition: opacity .18s ease, visibility .18s ease, transform .28s cubic-bezier(.22, 1, .36, 1);
}

.mobile-apply-bar svg {
	width: 17px;
	height: 17px;
}

body.menu-open .mobile-apply-bar {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(calc(100% + 24px));
}

.site-toast-scrim {
	position: fixed;
	inset: 0;
	z-index: 1490;
	background: rgba(8, 12, 12, .38);
	backdrop-filter: blur(1.5px);
	animation: toast-scrim-in .3s ease both;
}

body.toast-open {
	overflow: hidden;
}

.site-toast {
	position: fixed;
	top: 94px;
	right: 24px;
	z-index: 1500;
	width: min(480px, calc(100% - 32px));
	display: grid;
	grid-template-columns: 24px minmax(0, 1fr);
	gap: 12px;
	align-items: start;
	padding: 18px;
	color: #fff;
	background: var(--ink);
	border-left: 4px solid var(--gold);
	box-shadow: 0 20px 50px rgba(0, 0, 0, .24);
	animation: toast-in .3s ease both;
}

.site-toast.is-success {
	border-color: #54a66b;
}

.site-toast.is-error {
	border-color: #df5d51;
}

.site-toast > svg {
	width: 22px;
	height: 22px;
	margin-top: 2px;
}

.site-toast p {
	margin: 0;
	font-size: 16px;
	line-height: 1.55;
}

.site-toast button {
	width: 30px;
	height: 30px;
	display: grid;
	place-items: center;
	padding: 0;
	color: #fff;
	background: transparent;
	border: 0;
	cursor: pointer;
}

.site-toast button svg {
	width: 18px;
	height: 18px;
}

.site-toast .site-toast-confirm {
	grid-column: 1 / -1;
	width: 100%;
	min-height: 46px;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 4px;
	padding: 0 18px;
	color: #fff;
	background: rgba(255, 255, 255, .09);
	border: 1px solid rgba(255, 255, 255, .34);
	font-size: 15px;
	font-weight: 800;
	transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}

.site-toast .site-toast-confirm:hover,
.site-toast .site-toast-confirm:focus-visible {
	color: var(--ink);
	background: #fff;
	border-color: #fff;
	outline: 0;
}

.site-toast.is-closing {
	animation: toast-out .26s ease both;
}

.site-toast-scrim.is-closing {
	animation: toast-scrim-out .3s ease both;
}

@keyframes toast-scrim-in {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes toast-scrim-out {
	to { opacity: 0; }
}

@keyframes toast-in {
	from { opacity: 0; transform: translateY(-12px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes toast-out {
	to { opacity: 0; transform: translateY(-12px); }
}

@media (max-width: 900px) {
	:root {
		--header-height: 66px;
	}

	.header-inner,
	.footer-inner {
		width: min(calc(100% - 36px), var(--max-width));
	}

	.desktop-nav {
		display: none;
	}

	.menu-button {
		display: flex;
	}

	.footer-inner {
		padding: 54px 0 98px;
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.footer-links,
	.copyright {
		grid-column: 1;
	}

	.footer-links {
		gap: 10px 18px;
	}

	.mobile-apply-bar {
		display: flex;
	}
}

@media (max-width: 560px) {
	.brand-copy strong {
		font-size: 16px;
	}

	.brand-copy small {
		font-size: 14px;
	}

	.brand-mark {
		width: 34px;
		height: 34px;
	}

	.footer-info p {
		font-size: 14px;
		word-break: keep-all;
	}

	.footer-info p span {
		display: none;
	}

	.footer-info a {
		display: inline-block;
	}

	.site-toast {
		top: 78px;
		right: 16px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}

	.motion-reveal {
		opacity: 1 !important;
		clip-path: none !important;
		filter: none !important;
		transform: none !important;
	}

	.kinetic-title .title-char,
	.kinetic-copy {
		visibility: visible !important;
		opacity: 1 !important;
		clip-path: none !important;
		filter: none !important;
		transform: none !important;
	}

	.hero .eyebrow,
	.hero .hero-actions,
	.case-hero .section-kicker,
	.case-hero-index {
		opacity: 1 !important;
		clip-path: none !important;
		transform: none !important;
	}
}
