/* ==========================================================================
   jukjeonamc — design system (de-Elementor native theme)
   Tokens from Elementor kit #9 + post CSS: navy #051d40/#0b0f26, teal #69d8bf,
   gold #ffc45c, container 1140px, Pretendard body / Paperlogy display.
   ========================================================================== */

/* ---- Fonts (self-hosted, from the original Elementor custom fonts) ---- */
@font-face { font-family: 'Pretendard'; src: url('../fonts/Pretendard-ExtraLight.woff2') format('woff2'); font-weight: 200; font-display: swap; }
@font-face { font-family: 'Pretendard'; src: url('../fonts/Pretendard-Light.woff2') format('woff2'); font-weight: 300; font-display: swap; }
@font-face { font-family: 'Pretendard'; src: url('../fonts/Pretendard-Regular.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Pretendard'; src: url('../fonts/Pretendard-Medium.woff2') format('woff2'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Pretendard'; src: url('../fonts/Pretendard-SemiBold.woff2') format('woff2'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'Pretendard'; src: url('../fonts/Pretendard-Bold.woff2') format('woff2'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'Pretendard'; src: url('../fonts/Pretendard-ExtraBold.woff2') format('woff2'); font-weight: 800; font-display: swap; }
@font-face { font-family: 'Paperlogy'; src: url('../fonts/Paperlogy-4Regular.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Paperlogy'; src: url('../fonts/Paperlogy-5Medium.woff2') format('woff2'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Paperlogy'; src: url('../fonts/Paperlogy-6SemiBold.woff2') format('woff2'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'Paperlogy'; src: url('../fonts/Paperlogy-7Bold.woff2') format('woff2'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'AppleSDGothicNeo'; src: url('../fonts/AppleSDGothicNeoL.woff2') format('woff2'); font-weight: 300; font-display: swap; }
@font-face { font-family: 'AppleSDGothicNeo'; src: url('../fonts/AppleSDGothicNeoSB.woff2') format('woff2'); font-weight: 600; font-display: swap; }

/* ---- Tokens / reset ---- */
:root {
	--jk-navy: #051d40;
	--jk-navy-dark: #0b0f26;
	--jk-teal: #69d8bf;
	--jk-teal-deep: #3ccace;
	--jk-gold: #ffc45c;
	--jk-gold-deep: #a48550;
	--jk-ink: #333333;
	--jk-ink-soft: #363636;
	--jk-gray: #999999;
	--jk-line: #e5e5e5;
	--jk-container: 1140px;
	--jk-font-body: 'Pretendard', 'AppleSDGothicNeo', -apple-system, sans-serif;
	--jk-font-display: 'Paperlogy', 'Pretendard', sans-serif;
	--jk-font-en: 'Montserrat', 'Pretendard', sans-serif;
	--jk-header-h: 100px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--jk-font-body);
	font-size: 16px;
	line-height: 1.7;
	color: var(--jk-ink);
	word-break: keep-all;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, dl, dd { margin: 0; }
button { font: inherit; background: none; border: 0; cursor: pointer; padding: 0; }

.jk-skip {
	position: absolute; left: -9999px; top: 0; z-index: 999;
	background: var(--jk-navy); color: #fff; padding: 10px 18px;
}
.jk-skip:focus { left: 0; }
.screen-reader-text {
	position: absolute; width: 1px; height: 1px; overflow: hidden;
	clip: rect(0 0 0 0); clip-path: inset(50%);
}
.jk-ico { width: 18px; height: 18px; vertical-align: -3px; }

/* Shared eyebrow */
.jk-eyebrow {
	font-family: var(--jk-font-en);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.35em;
	color: var(--jk-teal);
	text-transform: uppercase;
}
.jk-eyebrow--light { color: #fff; opacity: .92; }

/* Buttons */
.jk-btn {
	display: inline-block;
	padding: 13px 38px;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 600;
	transition: background .2s, color .2s;
}
.jk-btn--navy { background: var(--jk-navy); color: #fff; }
.jk-btn--navy:hover { background: #0a2f63; }

/* ==========================================================================
   Header (transparent overlay → navy when scrolled / menu open)
   ========================================================================== */
.jk-header {
	position: absolute;
	inset: 0 0 auto 0;
	z-index: 100;
	transition: background .25s;
}
body:not(.home) .jk-header,
.jk-header.is-scrolled,
.jk-header.is-open { /* interior pages share the overlay look; solid comes from scroll */ }
.jk-header.is-scrolled,
.jk-header.is-open { position: fixed; background: rgba(11, 15, 38, .96); box-shadow: 0 2px 14px rgba(0,0,0,.25); }
.jk-header__inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 32px;
	height: var(--jk-header-h);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.jk-header__logo img { display: block; width: 220px; height: auto; }

.jk-nav__list { display: flex; align-items: center; gap: clamp(18px, 3vw, 52px); }
.jk-nav__list > li { position: relative; }
.jk-nav__list > li > a {
	display: block;
	padding: 38px 4px;
	color: #fff;
	font-size: 17px;
	font-weight: 600;
	letter-spacing: 0.02em;
	border-bottom: 2px solid transparent;
	transition: border-color .2s;
}
.jk-nav__list > li:hover > a,
.jk-nav__list > li.current-menu-item > a,
.jk-nav__list > li.current-menu-ancestor > a { border-bottom-color: #fff; }

.jk-nav__list .sub-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	min-width: 180px;
	background: rgba(11, 15, 38, .97);
	border-radius: 0 0 10px 10px;
	padding: 10px 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity .2s;
}
.jk-nav__list > li:hover .sub-menu,
.jk-nav__list > li:focus-within .sub-menu { opacity: 1; visibility: visible; }
.jk-nav__list .sub-menu a {
	display: block;
	padding: 9px 22px;
	color: rgba(255,255,255,.85);
	font-size: 15px;
	text-align: center;
	white-space: nowrap;
}
.jk-nav__list .sub-menu a:hover { color: var(--jk-teal); }

.jk-burger { display: none; width: 44px; height: 44px; position: relative; }
.jk-burger span {
	position: absolute; left: 10px; right: 10px; height: 2px;
	background: #fff; transition: transform .25s, opacity .2s;
}
.jk-burger span:nth-child(1) { top: 14px; }
.jk-burger span:nth-child(2) { top: 21px; }
.jk-burger span:nth-child(3) { top: 28px; }
.jk-header.is-open .jk-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.jk-header.is-open .jk-burger span:nth-child(2) { opacity: 0; }
.jk-header.is-open .jk-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1024px) {
	:root { --jk-header-h: 72px; }
	.jk-header__logo img { width: 168px; }
	.jk-burger { display: block; }
	.jk-nav {
		position: fixed;
		top: var(--jk-header-h);
		left: 0; right: 0;
		background: rgba(11, 15, 38, .98);
		max-height: 0;
		overflow: hidden;
		overflow-y: auto;
		transition: max-height .3s;
	}
	.jk-header.is-open .jk-nav { max-height: calc(100vh - var(--jk-header-h)); }
	.jk-nav__list { flex-direction: column; align-items: stretch; gap: 0; padding: 12px 0; }
	.jk-nav__list > li > a { padding: 14px 28px; border-bottom: 0; }
	.jk-nav__list .sub-menu {
		position: static; transform: none; opacity: 1; visibility: visible;
		background: rgba(255,255,255,.05); border-radius: 0; min-width: 0;
	}
	.jk-nav__list .sub-menu a { text-align: left; padding-left: 44px; }
}

/* ==========================================================================
   Front hero
   ========================================================================== */
.jk-hero {
	position: relative;
	min-height: 92vh;
	background-size: cover;
	background-position: center top;
	display: flex;
	align-items: center;
}
.jk-hero { overflow: hidden; }
.jk-hero__video {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
}
.jk-hero__scrim {
	position: absolute; inset: 0;
	background: rgba(25, 25, 25, .55);
}
.jk-hero__body {
	position: relative;
	max-width: var(--jk-container);
	margin: 0 auto;
	width: 100%;
	padding: 120px 24px 60px;
	color: #fff;
}
.jk-hero__sub { margin-top: 22px; font-size: 24px; font-weight: 500; }
.jk-hero h1 {
	margin: 10px 0 26px;
	font-family: var(--jk-font-display);
	font-size: clamp(34px, 4.6vw, 56px);
	font-weight: 700;
	letter-spacing: -0.01em;
	line-height: 1.25;
}
.jk-hero__desc { font-size: 16px; font-weight: 300; line-height: 1.9; opacity: .95; }

/* ==========================================================================
   Navy hours bar (footer chrome, also under the front hero)
   ========================================================================== */
.jk-hoursbar { background: var(--jk-navy-dark); color: #fff; }
.jk-hoursbar__inner {
	max-width: 1240px;
	margin: 0 auto;
	padding: 20px 24px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 60px;
	justify-content: space-between;
	font-size: 14.5px;
}
.jk-hoursbar__col p { margin: 3px 0; }
.jk-hoursbar .jk-ico { filter: invert(1) brightness(1.6); }
.jk-hoursbar__sub { opacity: .92; }
@media (max-width: 767px) { .jk-hoursbar__inner { flex-direction: column; font-size: 13.5px; } }

/* ==========================================================================
   About + counters
   ========================================================================== */
.jk-about {
	position: relative;
	background-size: cover;
	background-position: center;
	padding: clamp(60px, 8vw, 110px) 24px;
}
.jk-about__scrim { position: absolute; inset: 0; background: rgba(8, 10, 20, .68); }
.jk-about__body { position: relative; max-width: var(--jk-container); margin: 0 auto; color: #fff; }
.jk-about__title {
	margin: 18px 0 40px;
	font-size: clamp(24px, 3.2vw, 38px);
	font-weight: 700;
	line-height: 1.45;
}
.jk-about__title em { font-style: normal; color: var(--jk-teal); }

.jk-about__ribbon { position: relative; max-width: 560px; margin: 0 auto -26px; z-index: 2; text-align: center; }
.jk-about__ribbon img { display: block; width: 100%; }
.jk-about__ribbon span {
	position: absolute; inset: 0 8% 22% 8%;
	display: flex; align-items: center; justify-content: center;
	font-size: clamp(13px, 1.6vw, 17px); font-weight: 700; color: #4a3413;
}

.jk-stats {
	background: var(--jk-navy-dark);
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 18px;
	padding: clamp(30px, 4vw, 54px) clamp(16px, 3vw, 40px);
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}
.jk-stats__item { text-align: center; padding: 6px 10px; }
.jk-stats__item + .jk-stats__item { border-left: 1px solid rgba(255,255,255,.14); }
.jk-stats__item img { width: 64px; height: 64px; object-fit: contain; }
.jk-stats__item h3 { margin: 14px 0 6px; font-size: 16px; font-weight: 500; }
.jk-stats__item strong { font-family: var(--jk-font-display); font-size: clamp(26px, 3vw, 40px); font-weight: 700; color: var(--jk-gold); }
.jk-stats__note { margin-top: 14px; text-align: right; font-size: 13px; opacity: .8; }
@media (max-width: 767px) {
	.jk-stats { grid-template-columns: 1fr 1fr; row-gap: 26px; }
	.jk-stats__item:nth-child(3) { border-left: 0; }
}

/* ==========================================================================
   Centers grid
   ========================================================================== */
.jk-centers { padding: clamp(60px, 8vw, 100px) 24px clamp(70px, 9vw, 120px); overflow: hidden; }
.jk-marquee {
	white-space: nowrap;
	font-family: var(--jk-font-en);
	font-weight: 700;
	font-size: clamp(70px, 12vw, 160px);
	color: rgba(5, 29, 64, .05);
	line-height: 1;
	margin-bottom: -30px;
	user-select: none;
}
.jk-marquee span { display: inline-block; animation: jk-marquee 40s linear infinite; }
@keyframes jk-marquee { to { transform: translateX(-33.33%); } }

.jk-centers__head { text-align: center; margin-bottom: 44px; }
.jk-centers__head img { display: inline-block; }
.jk-centers__sub { margin-top: 16px; font-size: 17px; color: var(--jk-ink-soft); }
.jk-centers__head h2 { font-family: var(--jk-font-display); font-size: clamp(26px, 3.4vw, 40px); font-weight: 700; color: var(--jk-navy); }

.jk-centers__grid {
	max-width: var(--jk-container);
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}
.jk-center-card {
	position: relative;
	min-height: 210px;
	border-radius: 12px;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 22px;
	color: #fff;
}
.jk-center-card__scrim {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,.1) 30%, rgba(0,0,0,.72) 100%);
	transition: background .25s;
}
.jk-center-card:hover .jk-center-card__scrim { background: rgba(5, 29, 64, .72); }
.jk-center-card__label { position: relative; font-size: 21px; font-weight: 700; }
.jk-center-card__more {
	position: relative;
	margin-top: 10px;
	align-self: flex-start;
	font-family: var(--jk-font-en);
	font-size: 11px;
	letter-spacing: .12em;
	padding: 5px 14px;
	border: 1px solid rgba(255,255,255,.8);
	border-radius: 999px;
}
@media (max-width: 1024px) { .jk-centers__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .jk-centers__grid { grid-template-columns: 1fr 1fr; gap: 10px; } .jk-center-card { min-height: 150px; padding: 14px; } .jk-center-card__label { font-size: 16px; } }

/* ==========================================================================
   Features mosaic
   ========================================================================== */
.jk-features {
	position: relative;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	padding: clamp(70px, 9vw, 130px) 24px;
}
.jk-features__scrim { position: absolute; inset: 0; background: rgba(6, 8, 18, .55); }
.jk-features__inner {
	position: relative;
	max-width: 1240px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(280px, 1fr) minmax(0, 2fr);
	gap: clamp(30px, 5vw, 80px);
	color: #fff;
}
.jk-features__head h2 { margin: 18px 0 20px; font-family: var(--jk-font-display); font-size: clamp(26px, 3vw, 38px); font-weight: 700; line-height: 1.4; }
.jk-features__sub { font-size: 15px; font-weight: 300; opacity: .9; }

.jk-features__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px;
	align-items: start;
}
.jk-features__col { display: flex; flex-direction: column; gap: 22px; }
.jk-features__col:nth-child(2) { margin-top: 90px; }
.jk-feature-card {
	position: relative;
	background-size: cover;
	background-position: center;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
}
.jk-feature-card__scrim { position: absolute; inset: 0; background: #000; }
.jk-feature-card__text { position: relative; padding: 26px; font-size: 14.5px; font-weight: 300; line-height: 1.75; }
.jk-feature-card__text strong { display: block; font-size: 19px; font-weight: 700; margin-bottom: 6px; }
@media (max-width: 1024px) {
	.jk-features__inner { grid-template-columns: 1fr; }
	.jk-features__col:nth-child(2) { margin-top: 0; }
	.jk-feature-card { min-height: 300px !important; }
}
@media (max-width: 600px) { .jk-features__grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Doctors carousel
   ========================================================================== */
.jk-doctors { padding: clamp(60px, 8vw, 110px) 0; }
.jk-doctors__head { text-align: center; margin-bottom: 42px; padding: 0 24px; }
.jk-doctors__head h2 { margin: 16px 0 14px; font-family: var(--jk-font-display); font-size: clamp(26px, 3.2vw, 38px); font-weight: 700; color: var(--jk-navy); }
.jk-doctors__sub { font-size: 15px; color: #666; }

.jk-carousel { position: relative; max-width: 1320px; margin: 0 auto; padding: 0 60px; }
.jk-carousel__viewport { overflow: hidden; }
.jk-carousel__track {
	display: flex;
	gap: 22px;
	transition: transform .45s ease;
}
.jk-doctor-card { flex: 0 0 calc((100% - 66px) / 4); }
.jk-doctor-card__photo {
	position: relative;
	display: block;
	aspect-ratio: 3 / 4;
	background-size: cover;
	background-position: center top;
	border-radius: 8px;
	overflow: hidden;
}
.jk-doctor-card__more {
	position: absolute;
	right: 12px; bottom: 12px;
	background: rgba(5, 29, 64, .85);
	color: #fff;
	font-size: 12px;
	padding: 5px 12px;
	border-radius: 999px;
	opacity: 0;
	transition: opacity .2s;
}
.jk-doctor-card__photo:hover .jk-doctor-card__more { opacity: 1; }
.jk-doctor-card h3 { margin: 16px 0 4px; font-size: 19px; font-weight: 700; color: var(--jk-ink); }
.jk-doctor-card p { font-size: 13.5px; color: var(--jk-gray); }

.jk-carousel__arrow {
	position: absolute;
	top: 40%;
	width: 44px; height: 44px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 2px 12px rgba(0,0,0,.16);
	font-size: 26px;
	line-height: 1;
	color: var(--jk-navy);
	z-index: 2;
}
.jk-carousel__arrow--prev { left: 6px; }
.jk-carousel__arrow--next { right: 6px; }
.jk-carousel__arrow:disabled { opacity: .35; cursor: default; }
@media (max-width: 1024px) { .jk-doctor-card { flex-basis: calc((100% - 44px) / 3); } }
@media (max-width: 767px) {
	.jk-carousel { padding: 0 24px; }
	.jk-doctor-card { flex-basis: calc((100% - 22px) / 2); }
	.jk-carousel__arrow { display: none; }
	.jk-carousel__viewport { overflow-x: auto; scroll-snap-type: x mandatory; }
	.jk-doctor-card { scroll-snap-align: start; }
}

/* ==========================================================================
   Tour
   ========================================================================== */
.jk-tour {
	background-size: cover;
	background-position: center;
	padding: clamp(70px, 10vw, 140px) 24px;
}
.jk-tour__card {
	max-width: 720px;
	margin: 0 auto;
	background: rgba(255, 255, 255, .82);
	backdrop-filter: blur(6px);
	border-radius: 24px;
	padding: clamp(36px, 5vw, 64px) clamp(24px, 5vw, 70px);
	text-align: center;
	box-shadow: 0 18px 50px rgba(0, 0, 0, .18);
}
.jk-tour__card h2 {
	margin: 18px 0 20px;
	font-family: var(--jk-font-display);
	font-size: clamp(24px, 3vw, 34px);
	font-weight: 700;
	color: var(--jk-navy);
	line-height: 1.4;
}
.jk-tour__desc { font-size: 15px; color: #444; margin-bottom: 30px; }

/* ==========================================================================
   Directions
   ========================================================================== */
.jk-directions {
	background-size: cover;
	background-position: center;
	padding: clamp(60px, 8vw, 110px) 24px;
}
.jk-directions__inner {
	max-width: 1240px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
	gap: clamp(30px, 5vw, 70px);
	align-items: start;
}
.jk-directions__info h2 { font-family: var(--jk-font-display); font-size: clamp(26px, 3.2vw, 38px); font-weight: 700; color: var(--jk-navy); margin-bottom: 20px; }
.jk-directions__addr { color: #555; font-size: 15.5px; }
.jk-directions__valet { margin: 8px 0 26px; font-size: 15.5px; color: #555; }
.jk-directions__valet strong { color: var(--jk-navy); }

.jk-directions__ctas { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; max-width: 480px; }
.jk-cta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 15px 12px;
	border-radius: 12px;
	font-size: 15.5px;
	font-weight: 700;
	color: #fff;
}
.jk-cta img { width: 22px; height: 22px; object-fit: contain; }
.jk-cta--phone { background: var(--jk-navy); }
.jk-cta--kakao { background: #f7e600; color: #3a1d1d; }
.jk-cta--insta { background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af); }
.jk-cta--blog { background: #2db400; }

.jk-directions__hours-title { margin: 34px 0 14px; font-size: 20px; font-weight: 700; color: var(--jk-navy); }
.jk-hours__row {
	display: flex;
	gap: 20px;
	padding: 10px 0;
	border-bottom: 1px dashed #d9d9d9;
	font-size: 15px;
}
.jk-hours__row dt { flex: 0 0 130px; font-weight: 700; color: var(--jk-ink); }
.jk-hours__row dd { color: #555; }
.jk-hours__note { margin-top: 14px; font-size: 13px; color: #8a8a8a; }

#jk-map-wrapper {
	height: 560px;
	border-radius: 30px 0 30px 0;
	overflow: hidden;
	position: relative;
	box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
#jk-map { width: 100%; height: 100%; }
@media (max-width: 1024px) {
	.jk-directions__inner { grid-template-columns: 1fr; }
	#jk-map-wrapper { height: 400px; border-radius: 20px; }
}

/* ==========================================================================
   Sub-page hero + breadcrumb bar (template #967 대체)
   ========================================================================== */
.jk-phero {
	position: relative;
	min-height: 370px;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.jk-phero__scrim { position: absolute; inset: 0; background: rgba(20, 20, 20, .45); }
.jk-phero__body { position: relative; color: #fff; padding: 120px 24px 70px; }
.jk-phero__body h1 {
	margin: 16px 0 26px;
	font-family: var(--jk-font-display);
	font-size: clamp(30px, 4vw, 44px);
	font-weight: 700;
}
.jk-phero__rule { display: block; width: 70px; height: 1px; background: rgba(255,255,255,.8); margin: 0 auto; }

.jk-crumbbar { background: var(--jk-navy-dark); color: #fff; }
.jk-crumbbar__inner {
	max-width: var(--jk-container);
	margin: 0 auto;
	padding: 0 24px;
	height: 58px;
	display: flex;
	align-items: center;
	gap: 40px;
	font-size: 15px;
}
.jk-crumbbar__home img { width: 18px; height: 18px; display: block; }
.jk-crumbbar__sep { opacity: .55; }
.jk-crumbbar a:hover { color: var(--jk-teal); }
@media (max-width: 600px) { .jk-crumbbar__inner { gap: 20px; font-size: 13.5px; } }

/* Generic interior section shell */
.jk-section { padding: clamp(56px, 7vw, 100px) 24px; }
.jk-section__inner { max-width: var(--jk-container); margin: 0 auto; }
.jk-section--gray { background: #f7f8fa; }
.jk-section__title { text-align: center; font-family: var(--jk-font-display); font-size: clamp(24px, 3vw, 36px); font-weight: 700; color: var(--jk-navy); margin-bottom: 18px; }
.jk-section__lead { text-align: center; font-size: 16px; color: #555; margin-bottom: 40px; }

/* Quote headline (인사말 등) */
.jk-quote {
	text-align: center;
	font-size: clamp(19px, 2.4vw, 27px);
	font-weight: 700;
	color: var(--jk-ink);
	line-height: 1.6;
}
.jk-quote::before { content: '“'; color: var(--jk-navy); }
.jk-quote::after { content: '”'; color: var(--jk-navy); }
.jk-quote + .jk-quote-sub { margin-top: 24px; text-align: center; color: #666; font-size: 15.5px; line-height: 2; }

/* Split (image + text) */
.jk-split {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(28px, 4vw, 64px);
	align-items: center;
}
.jk-split + .jk-split { margin-top: clamp(48px, 6vw, 80px); }
.jk-split__img img { display: block; width: 100%; border-radius: 4px; }
.jk-split__eyebrow { font-family: var(--jk-font-en); font-size: 14px; letter-spacing: .14em; color: var(--jk-gray); }
.jk-split__body h3 { margin: 6px 0 22px; font-family: var(--jk-font-en); font-size: clamp(22px, 2.6vw, 30px); font-weight: 700; color: var(--jk-navy); }
.jk-split__body p { color: #555; font-size: 15.5px; line-height: 1.95; }
.jk-split--rev .jk-split__img { order: 2; }
@media (max-width: 800px) {
	.jk-split { grid-template-columns: 1fr; }
	.jk-split--rev .jk-split__img { order: 0; }
}

/* Icon/photo 3-col cards */
.jk-cards3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.jk-cards3__item { text-align: center; }
.jk-cards3__item img.jk-cards3__photo { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 6px; }
.jk-cards3__item h4 { margin: 18px 0 10px; font-size: 19px; font-weight: 700; color: var(--jk-navy); }
.jk-cards3__item p { font-size: 14px; color: #666; }
@media (max-width: 800px) { .jk-cards3 { grid-template-columns: 1fr; } }

/* Content typography for classic post content */
.jk-entry { max-width: 860px; margin: 0 auto; }
.jk-entry img { border-radius: 8px; }
.jk-entry h2 { font-size: 26px; color: var(--jk-navy); border-bottom: 2px solid var(--jk-navy); padding-bottom: 10px; margin: 40px 0 20px; }
.jk-entry table { display: block; overflow-x: auto; border-collapse: collapse; }
.jk-entry td, .jk-entry th { border: 1px solid var(--jk-line); padding: 10px 14px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.jk-footer { background: #222; color: #dadada; font-size: 14px; }
.jk-footer__inner {
	max-width: 1240px;
	margin: 0 auto;
	padding: clamp(40px, 5vw, 64px) 24px;
	display: grid;
	grid-template-columns: minmax(260px, 1fr) minmax(0, 2fr);
	gap: clamp(30px, 4vw, 70px);
}
.jk-footer__logo { width: 200px; height: auto; }
.jk-footer__brand p { margin-top: 18px; line-height: 1.9; color: #b5b5b5; }
.jk-footer__sitemap {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 18px;
	border-left: 1px solid #414141;
	padding-left: clamp(20px, 3vw, 48px);
}
.jk-footer__col h3 { font-size: 15px; color: #fff; margin-bottom: 14px; }
.jk-footer__col li { margin: 7px 0; }
.jk-footer__col a { color: #8f8f8f; font-size: 13px; }
.jk-footer__col a:hover { color: var(--jk-teal-deep); }
.jk-footer__bottom {
	border-top: 1px solid #3a3a3a;
	padding: 18px 24px;
	max-width: 1240px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	color: #8f8f8f;
	font-size: 13px;
}
.jk-footer__sns { display: flex; gap: 14px; }
.jk-footer__sns img { width: 26px; height: 26px; }
@media (max-width: 1024px) {
	.jk-footer__inner { grid-template-columns: 1fr; }
	.jk-footer__sitemap { grid-template-columns: repeat(3, 1fr); border-left: 0; padding-left: 0; }
}

/* ==========================================================================
   Floating dock
   ========================================================================== */
.jk-dock {
	position: fixed;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 90;
	display: flex;
	align-items: center;
	transition: transform .3s;
}
.jk-dock.is-closed { transform: translateY(-50%) translateX(calc(100% - 22px)); }
.jk-dock__tab {
	width: 22px; height: 64px;
	background: #fff;
	border-radius: 10px 0 0 10px;
	box-shadow: -3px 0 10px rgba(0,0,0,.08);
	display: flex; align-items: center; justify-content: center;
}
.jk-dock__tab img { width: 16px; transition: transform .3s; }
.jk-dock.is-closed .jk-dock__tab img { transform: rotate(180deg); }
.jk-dock__body {
	width: 92px;
	background: #fff;
	border-radius: 14px 0 0 14px;
	box-shadow: 0 6px 24px rgba(0,0,0,.12);
	padding: 6px 0;
}
.jk-dock__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	padding: 13px 6px;
	font-size: 11.5px;
	line-height: 1.3;
	text-align: center;
	color: #444;
	border-bottom: 1px solid #f0f0f0;
}
.jk-dock__item:last-child { border-bottom: 0; }
.jk-dock__item img { width: 22px; height: 22px; }
@media (max-width: 767px) { .jk-dock { display: none; } }

/* 404 / archive shells */
.jk-plain { padding: 140px 24px 90px; text-align: center; }
.jk-plain h1 { color: var(--jk-navy); font-size: 30px; margin-bottom: 16px; }
