
/* OnemobileG — 서버 woff2 우선, 로컬 설치 폴백 */
@font-face {
  font-family: 'OnemobileG';
  src: url('/wp-content/fonts/OnemobileG-Regular.woff2') format('woff2'),
       local('OnemobileG'), local('One Mobile Gothic');
  font-display: swap;
  font-weight: 400;
}
@font-face {
  font-family: 'OnemobileG';
  src: url('/wp-content/fonts/OnemobileG-Bold.woff2') format('woff2'),
       local('OnemobileG Bold'), local('One Mobile Gothic Bold');
  font-display: swap;
  font-weight: 700;
}

/* OnemobileT — 제목 전용 타이틀 폰트 */
@font-face {
  font-family: 'OnemobileT';
  src: url('/wp-content/fonts/OnemobileT.woff2') format('woff2');
  font-display: swap;
  font-weight: 700;
}



/* ===== 변수 ===== */
:root {
  --blue:      #00264B;
  --red:       #C0392B;
  --dark:      #2C3E50;
  --footer-bg: #1a1a1a;
  --text:      #333333;
  --sub:       #888888;
  --bg:        #ffffff;
  --bg-dark:   #2e2e2e;
  --white:     #ffffff;
  --container: 1620px;
  --header-h:  80px;
}

.entry-content { padding: 0 !important; max-width: 100% !important; margin: 0 !important; }
.entry-content > br { display: none !important; }
body.admin-bar .hk-header { top: 32px !important; }

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'OnemobileG', 'Pretendard Variable', 'Pretendard', 'Malgun Gothic', '맑은 고딕', sans-serif;
  font-size: 16px;
  color: var(--text);
  line-height: 1.5;
  letter-spacing: -0.05em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  word-break: keep-all;
  overflow-wrap: break-word;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

.hk-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 30px;
}


.hk-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,.85);
  align-items: center;
  justify-content: center;
}
.hk-modal.open { display: flex; flex-direction: column; align-items: center; justify-content: center; }
.hk-modal-inner {
  position: relative;
  width: 92vw;
  max-width: 1280px;
  max-height: 82vh;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 4px;
  overflow: hidden;
}
.hk-modal-inner iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.hk-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,.65);
  border: 2px solid rgba(255,255,255,.8);
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.hk-modal-close:hover {
  background: rgba(255,255,255,.2);
  transform: scale(1.1);
}
.hk-modal-no-show {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.85);
  font-size: 13px;
  margin-top: 12px;
  cursor: pointer;
  user-select: none;
}
.hk-modal-no-show input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: #fff;
}




.hk-scroll-to-view {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
}
.hk-scroll-to-view-label {
  font-size: 13px;
  font-weight: 400;
  color: var(--sub);
  letter-spacing: 0.02em;
}
.hk-scroll-to-view-btn {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform .25s, background .25s;
  animation: hkScrollBounce 2s infinite;
}
.hk-scroll-to-view:hover .hk-scroll-to-view-btn {
  background: var(--blue);
  transform: translateY(3px);
  animation: none;
}
.hk-scroll-to-view-btn svg { width: 20px; height: 20px; display: block; }
@keyframes hkScrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

.hk-scroll-indicator {
  position: absolute;
  bottom: 36px;
  right: 80px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.hk-scroll-indicator span {
  font-size: 10px;
  letter-spacing: .15em;
  color: rgba(255,255,255,.6);
  font-weight: 500;
}
.hk-scroll-btn {
  width: 38px; height: 38px;
  border: 1.5px solid rgba(255,255,255,.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.8);
  font-size: 16px;
  animation: hkBounce 2.2s infinite;
}
@keyframes hkBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(7px); }
}

.hk-section { padding: 60px 0; }

.hk-section-head {
  text-align: center;
  margin-bottom: 60px;
}
.hk-label {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.05em;
  margin-bottom: 16px;
}
.hk-section-title {
  font-size: 38px;
  font-weight: 700;
  color: #111;
  line-height: 1.4;
  letter-spacing: -0.06em;
}
.hk-section-desc {
  font-size: 18px;
  color: var(--sub);
  margin-top: 14px;
  line-height: 1.6;
  letter-spacing: -0.06em;
}

.hk-service { background: var(--white); }

.hk-service-accordion {
  display: flex;
  gap: 6px;
  height: 460px;
}
.hk-svc-panel {
  position: relative;
  flex: 0 0 120px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  transition: flex .45s cubic-bezier(.25,.46,.45,.94);
}
.hk-svc-panel.active { flex: 1 1 auto; }
.hk-svc-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.42);
  z-index: 1;
  pointer-events: none;
  transition: background .25s;
}
.hk-svc-panel:not(.active):hover::before { background: rgba(0,0,0,.3); }
.hk-svc-panel::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 65%;
  background: linear-gradient(0deg, rgba(0,0,0,.8) 0%, rgba(0,0,0,.4) 55%, rgba(0,0,0,0) 100%);
  z-index: 1;
  pointer-events: none;
}

.hk-svc-vttl {
  z-index: 2;
  opacity: 1;
  visibility: visible;
  transition: opacity .2s;
}
.hk-svc-vttl span {
  position: absolute;
  z-index: 2;
  top: 64px; right: 50%;
  display: inline-block;
  transform-origin: right center;
  transform: rotate(-90deg);
  white-space: nowrap;
  color: #fff;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 6px rgba(0,0,0,.85), 0 1px 3px rgba(0,0,0,.9);
}
.hk-svc-panel.active .hk-svc-vttl { opacity: 0; visibility: hidden; }

.hk-svc-plus {
  position: absolute;
  bottom: 44px; left: 50%;
  transform: translateX(-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(0,0,0,.45);
  border: none;
  z-index: 2;
  cursor: pointer;
  transition: background .25s;
}
.hk-svc-plus:hover { background: rgba(0,0,0,.65); }
.hk-svc-plus::before, .hk-svc-plus::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: #fff;
  transform: translate(-50%,-50%);
}
.hk-svc-plus::before { width: 16px; height: 2px; }
.hk-svc-plus::after { width: 2px; height: 16px; }
.hk-svc-panel.active .hk-svc-plus { display: none; }

.hk-svc-linkbox {
  display: none;
  position: absolute;
  left: 0; bottom: 0;
  z-index: 2;
  background: transparent;
  border-radius: 0 40px 0 0;
  padding: 36px 40px 32px 36px;
  width: 46%;
  min-width: 300px;
  max-width: 480px;
}
.hk-svc-panel.active .hk-svc-linkbox { display: block; }
.hk-svc-ttl3 {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
  text-shadow: 0 2px 8px rgba(0,0,0,.7), 0 1px 3px rgba(0,0,0,.8);
}
.hk-svc-desc2 {
  font-size: 15px;
  color: rgba(255,255,255,.85);
  line-height: 1.75;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  text-shadow: 0 1px 4px rgba(0,0,0,.6);
}
.hk-svc-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.6);
  padding-bottom: 4px;
  transition: gap .25s;
  text-shadow: 0 1px 4px rgba(0,0,0,.6);
}
.hk-svc-more:hover { gap: 10px; }
@media (max-width: 1080px) {
  .hk-service-accordion { flex-direction: column; height: auto; gap: 8px; }
  .hk-svc-panel { flex: 0 0 64px; transition: flex .4s ease; }
  .hk-svc-panel.active { flex: 0 0 340px; }
  .hk-svc-vttl {
    position: absolute;
    top: 0; bottom: 0; left: 24px; right: auto;
    display: flex;
    align-items: center;
  }
  .hk-svc-vttl span { position: static; transform: none; font-size: 17px; }
  .hk-svc-plus {
    bottom: auto; top: 50%; left: auto; right: 16px;
    transform: translateY(-50%);
  }
  .hk-svc-linkbox {
    width: 100%; max-width: none; min-width: 0;
    border-radius: 0 24px 0 0;
    padding: 24px;
  }
  .hk-svc-ttl3 { font-size: 22px; }
}

/* References 블록 */
.hk-references {
  background: var(--white);
  padding: 60px 0;
}
.hk-ref-head {
  text-align: center;
  margin-bottom: 48px;
}
.hk-ref-head h3 {
  font-size: 38px;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.06em;
}
.hk-ref-head p {
  font-size: 18px;
  color: var(--sub);
  margin-top: 8px;
  letter-spacing: -0.06em;
}
.hk-ref-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.hk-ref-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
}
.hk-ref-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .45s;
}
.hk-ref-card:hover img { transform: scale(1.06); }
.hk-ref-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,20,20,.52);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background .3s;
}
.hk-ref-card:hover .hk-ref-overlay { background: rgba(20,20,20,.35); }
.hk-play-btn {
  width: 50px; height: 50px;
  border: 2px solid rgba(255,255,255,.75);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  padding-left: 3px;
  transition: background .25s, border-color .25s;
}
.hk-ref-card:hover .hk-play-btn {
  background: rgba(255,255,255,.18);
  border-color: var(--white);
}
.hk-ref-ttl {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.05em;
  text-align: center;
}

.hk-values { background: var(--bg); }

.hk-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.hk-value-card {
  position: relative;
  aspect-ratio: 1.9 / 1;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}
.hk-value-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s;
}
.hk-value-card:hover img { transform: scale(1.06); }
.hk-value-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(20,20,20,.80), rgba(60,60,60,.68));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  transition: background .3s;
}
.hk-value-card:hover .hk-value-overlay {
  background: linear-gradient(150deg, rgba(20,20,20,.88), rgba(60,60,60,.78));
}
.hk-value-num {
  position: absolute;
  top: 18px; right: 22px;
  font-size: 58px;
  font-weight: 900;
  font-style: italic;
  color: rgba(255,255,255,.15);
  line-height: 1;
  user-select: none;
}
.hk-value-tag {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,.55);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.hk-value-ttl {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.06em;
  line-height: 1.35;
}
.hk-value-note {
  font-size: 15px;
  color: rgba(255,255,255,.55);
  letter-spacing: -0.05em;
  margin-top: 6px;
}
.hk-wip-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(0,38,75,.8);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: .06em;
}

.hk-contact-grid br,
.hk-tabs br,
footer br { display: none; }
.hk-footer-bottom p:empty,
.hk-footer-inner p:empty { display: none; }

.hk-contact-links { background: var(--white); }
.hk-contact-layout{display:grid;grid-template-columns:1.1fr 1fr;gap:28px;align-items:stretch;}
.hk-contact-right{display:flex;flex-direction:column;}
.hk-contact-right .hk-section-head{text-align:right;}
.hk-contact-right .hk-contact-grid{flex:1;height:auto;min-height:0;}
.hk-contact-video{position:relative;border-radius:16px;overflow:hidden;box-shadow:0 20px 50px rgba(0,0,0,.15);background:#000;aspect-ratio:16/9;}
.hk-contact-video-poster{position:absolute;inset:0;background-size:cover;background-position:center;display:flex;align-items:center;justify-content:center;cursor:pointer;}
.hk-contact-video-poster::before{content:"";position:absolute;inset:0;background:rgba(0,0,0,.32);}
.hk-contact-play{position:relative;z-index:1;width:64px;height:64px;border-radius:50%;background:rgba(255,255,255,.94);border:none;display:flex;align-items:center;justify-content:center;color:#00264b;cursor:pointer;box-shadow:0 8px 24px rgba(0,0,0,.25);transition:transform .25s;}
.hk-contact-play:hover{transform:scale(1.08);}
.hk-contact-video iframe{position:absolute;inset:0;width:100%;height:100%;border:0;}
.hk-contact-grid{display:grid;grid-template-columns:1fr 1fr;grid-template-rows:repeat(3,auto);gap:12px;align-content:center;height:100%;}
.hk-contact-item{position:relative;overflow:hidden;padding:18px 28px;border:1px solid #e5e7eb;border-radius:12px;background:#fff;display:flex;align-items:center;justify-content:space-between;gap:16px;text-decoration:none;z-index:0;}
.hk-contact-item::before{content:"";position:absolute;inset:0;background:#00264b;transform:scaleY(0);transform-origin:bottom;transition:transform .4s cubic-bezier(.65,0,.35,1);z-index:-1;}
.hk-contact-item:hover::before{transform:scaleY(1);}
.hk-contact-item:focus{outline:none;}
.hk-contact-item .hk-contact-name{font-size:22px;font-weight:600;color:var(--text);letter-spacing:-0.03em;transition:color .2s;}
.hk-contact-item .hk-contact-arrow{display:inline-flex;align-items:center;color:var(--blue);flex-shrink:0;transition:transform .35s cubic-bezier(.34,1.56,.64,1),color .2s;}
.hk-contact-item:hover .hk-contact-name{color:#fff;}
.hk-contact-item:hover .hk-contact-arrow{color:#fff;transform:translateX(10px) scale(1.2);}
@media(max-width:1080px){
.hk-contact-layout{grid-template-columns:1fr;gap:16px;}
.hk-contact-grid{gap:8px;}
.hk-contact-right{display:contents;}
.hk-contact-right .hk-contact-head{order:-1;text-align:center;}
.hk-contact-item{padding:10px 6px;border:1px solid #dee2e6;border-radius:8px;justify-content:center;text-align:center;}
.hk-contact-item .hk-contact-arrow{display:none;}
.hk-contact-item .hk-contact-name{font-size:14px;}
}

.hk-portfolio { background: var(--bg); }

.hk-tabs {
  display: flex;
  border-bottom: 2px solid #dee2e6;
  margin-bottom: 40px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.hk-tabs::-webkit-scrollbar { display: none; }
.hk-tab-btn {
  padding: 14px 26px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.05em;
  color: var(--sub);
  border: none;
  margin-bottom: 0;
  white-space: nowrap;
  background: none;
  outline: none;
  cursor: pointer;
  box-shadow: none;
  transition: color .2s, box-shadow .2s, font-weight .1s;
}
.hk-tab-btn.active {
  color: var(--blue);
  box-shadow: inset 0 -3px 0 var(--blue);
  font-weight: 700;
}
.hk-tab-btn:hover { color: var(--blue); font-weight: 900; box-shadow: inset 0 -3px 0 var(--blue); }

.hk-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.hk-pf-card {
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 14px rgba(0,0,0,.07);
  transition: transform .3s, box-shadow .3s;
}
.hk-pf-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(0,0,0,.12);
}
.hk-pf-thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.hk-pf-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .45s;
}
.hk-pf-card:hover .hk-pf-thumb img { transform: scale(1.06); }
.hk-pf-body { padding: 16px; }
.hk-pf-tag {
  font-size: 13px;
  font-weight: 700;
  color: #C0522A;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.hk-pf-ttl {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.05em;
  color: var(--text);
}
.hk-pf-date {
  font-size: 14px;
  color: var(--sub);
  letter-spacing: -0.03em;
  margin-top: 8px;
}

.hk-pfm-wrap {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9100;
  background: rgba(0,0,0,.75);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.hk-pfm-wrap.is-open { display: flex; }
.hk-pfm-inner {
  position: relative;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  width: 100%;
  max-width: 760px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.hk-pfm-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: rgba(0,0,0,.45);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: background .2s;
}
.hk-pfm-close:hover { background: rgba(0,0,0,.7); }
.hk-pfm-media {
  width: 100%;
  background: #111;
  aspect-ratio: 16/9;
  flex-shrink: 0;
}
.hk-pfm-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hk-pfm-media iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.hk-pfm-slides {
  width: 100%;
  height: 100%;
  position: relative;
}
.hk-pfm-slide {
  display: none;
  width: 100%;
  height: 100%;
}
.hk-pfm-slide.active { display: block; }
.hk-pfm-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hk-pfm-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(0,0,0,.45);
  border: none;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.hk-pfm-arrow:hover { background: rgba(0,0,0,.7); }
.hk-pfm-prev { left: 12px; }
.hk-pfm-next { right: 12px; }
.hk-pfm-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}
.hk-pfm-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.5);
  cursor: pointer;
  padding: 0;
  transition: background .2s;
}
.hk-pfm-dot.active { background: #fff; }
.hk-pfm-body {
  padding: 24px 28px 28px;
  overflow-y: auto;
}
.hk-pfm-cat {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--accent, #1a3f8c);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.hk-pfm-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text, #111);
  margin: 0 0 16px;
  line-height: 1.4;
}
.hk-pfm-fields { display: flex; flex-direction: column; gap: 10px; }
.hk-pfm-field {
  display: flex;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
}
.hk-pfm-label {
  flex-shrink: 0;
  width: 72px;
  font-weight: 600;
  color: var(--sub, #888);
}
.hk-pfm-value { color: var(--text, #111); }

@media (max-width: 600px) {
  .hk-pfm-body { padding: 18px 20px 24px; }
  .hk-pfm-title { font-size: 17px; }
}

.hk-footer {
  background: var(--blue);
  padding: 64px 0 0;
}
.hk-footer .hk-container {
  max-width: min(1620px, 90vw);
  padding-left: 30px;
  padding-right: 30px;
}
.hk-footer-bottom-bar {
  background: var(--blue);
  margin-top: 0;
}
.hk-footer-top {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-bottom: 4px;
}
.hk-footer-logo img {
  height: 22px;
  display: block;
  filter: brightness(0) invert(1);
}
.hk-footer-tagline {
  font-size: 15px;
  color: rgba(255,255,255,.6);
  letter-spacing: -0.05em;
  line-height: 1.9;
  align-self: flex-end;
  margin-bottom: 4px;
}
.hk-footer-info {
  padding: 4px 0 48px;
  font-size: 14px;
  color: rgba(255,255,255,.65);
  letter-spacing: -0.04em;
  line-height: 2.1;
}
.hk-footer-info p { margin: 0; }
.hk-footer-info a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  transition: color .2s;
}
.hk-footer-info a:hover { color: #fff; text-decoration: underline; }
.hk-footer-info strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.05em;
  margin-bottom: 4px;
}
.hk-footer-nav h4 {
  font-size: 13px;
  font-weight: 700;
  color: rgba(0,0,0,.45);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.hk-footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hk-footer-nav a {
  font-size: 15px;
  color: rgba(0,0,0,.55);
  letter-spacing: -0.04em;
  transition: color .2s;
}
.hk-footer-nav a:hover { color: var(--blue); }
.hk-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 0 60px;
}
.hk-copyright {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  letter-spacing: -0.03em;
  margin-top: -40px;
}
.hk-sns {
  display: flex;
  gap: 12px;
  margin-left: auto;
  flex-shrink: 0;
}
.hk-sns a {
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  fill: #fff;
  flex-shrink: 0;
  transition: border-color .2s, background .2s;
}
.hk-sns a svg { width: 22px; height: 22px; display: block; fill: currentColor; }
.hk-sns a:hover { border-color: #fff; background: rgba(255,255,255,.15); }

.hk-fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s, transform .65s;
}
.hk-fade-up.hk-visible {
  opacity: 1;
  transform: translateY(0);
}
.hk-values-grid .hk-fade-up:nth-child(2)  { transition-delay: .1s; }
.hk-values-grid .hk-fade-up:nth-child(3)  { transition-delay: .1s; }
.hk-values-grid .hk-fade-up:nth-child(4)  { transition-delay: .2s; }

@media (max-width: 1080px) {
  .hk-portfolio-grid   { grid-template-columns: repeat(2, 1fr); }
  .hk-footer-inner     { grid-template-columns: 1fr 1fr; }
  .hk-footer-inner > *:last-child { grid-column: 1 / -1; }
}
@media (max-width: 1080px) {
  :root { --header-h: 60px; }
  .hk-container       { padding: 0 20px; }
  .hk-section         { padding: 64px 0; }
  .hk-references      { padding: 64px 0; }
  .hk-section-head    { margin-bottom: 40px; }
  .hk-section-title   { font-size: 28px; letter-spacing: -0.05em; }
  .hk-section-desc    { font-size: 15px; }
  .hk-label           { font-size: 15px; }
  .hk-contact-name    { font-size: 22px; }
  .hk-tab-btn         { font-size: 15px; }

  .hk-scroll-indicator { right: 20px; }

  .hk-tabs {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    border-bottom: none;
    gap: 6px;
    overflow: visible;
    margin-bottom: 32px;
  }
  .hk-tab-btn {
    width: 100%;
    text-align: center;
    border: 1px solid #dee2e6 !important;
    border-radius: 8px;
    padding: 10px 4px;
    font-size: 14px;
    box-shadow: none !important;
  }
  .hk-tab-btn.active {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue) !important;
    box-shadow: none !important;
  }
  .hk-tab-btn:hover { box-shadow: none !important; }
  .hk-values-grid    { grid-template-columns: 1fr; }
  .hk-contact-grid   { grid-template-columns: 1fr 1fr; gap: 8px; }
  .hk-contact-item   { border: 1px solid #dee2e6; border-radius: 8px; padding: 10px 6px; justify-content: center; text-align: center; }
  .hk-contact-item .hk-contact-arrow { display: none; }
  .hk-contact-item .hk-contact-name { font-size: 14px; }
  
  .hk-portfolio-grid { grid-template-columns: 1fr; }
  .hk-footer-inner   { grid-template-columns: 1fr; gap: 36px; }
}

.hk-bottom-nav { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 990; display: flex; gap: 2px; background: var(--blue, #00264B); border-radius: 150px; padding: 6px 8px; white-space: nowrap; box-shadow: 0 4px 18px rgba(0,38,75,.35); opacity: 1; transition: opacity .35s, transform .35s; }
.hk-bottom-nav.hk-nav-hidden { opacity: 0; pointer-events: none; }
.hk-bottom-nav a { font-family: 'OnemobileG', 'Pretendard', 'Malgun Gothic', sans-serif; color: rgba(255,255,255,.70); font-size: 16px; font-weight: 400; letter-spacing: -0.05em; padding: 6px 18px; border-radius: 32px; text-decoration: none; transition: background .25s, color .25s, font-weight .1s; }
.hk-bottom-nav a.active, .hk-bottom-nav a:hover { background: #ffffff; color: var(--blue, #00264B); font-weight: 700; }
@media (max-width: 768px) {
  .hk-ref-grid     { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hk-ref-grid     { grid-template-columns: 1fr; }
  .hk-bottom-nav a { font-size: 13px; padding: 6px 11px; }
  .hk-footer-bottom { flex-direction: column-reverse; align-items: center; gap: 10px; }
  .hk-bottom-nav { display: none; }
}
@media (max-width: 480px) {
  .hk-footer-logo, .hk-footer-tagline, .hk-footer-rep { display: none; }
  .hk-footer-top { justify-content: center; padding-bottom: 4px; }
  .hk-sns { margin: 0 auto; }
  .hk-footer-info { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; padding: 4px 0 32px; }
  .hk-footer-info p:not(.hk-footer-rep) { display: flex; flex-direction: column; align-items: center; gap: 2px; }
  .hk-footer-bottom-bar { text-align: center; }
  .hk-footer-bottom { justify-content: center; }
}


.hk-references .hk-section-head {
  position: relative;
  text-align: center;
  margin-bottom: 0;
}
.hk-references .hk-section-head-txt {
  width: 100%;
}
.hk-ref-slider-outer {
  position: relative;
  margin-top: 40px;
}
.hk-ref-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #d0d0d0;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  box-shadow: 0 4px 14px rgba(0,0,0,.1);
  transition: border-color .2s, color .2s;
}
.hk-ref-btn:hover:not(:disabled) {
  border-color: #1a2b6e;
  color: #1a2b6e;
}
.hk-ref-btn:disabled {
  opacity: .35;
  cursor: default;
}
.hk-ref-slider-outer .hk-ref-btn {
  display: none;
}
.hk-ref-slider-wrap {
  overflow: visible;
}
.hk-ref-slider {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
}
.hk-ref-slider .hk-ref-card {
  overflow: visible;
  border-radius: 0;
  cursor: pointer;
  transition: left .45s cubic-bezier(.25,.46,.45,.94),
              top .45s cubic-bezier(.25,.46,.45,.94),
              width .45s cubic-bezier(.25,.46,.45,.94),
              height .45s cubic-bezier(.25,.46,.45,.94),
              box-shadow .45s ease;
  z-index: 1;
}
@media (hover: hover) and (pointer: fine) {
.hk-ref-slider .hk-ref-card:hover {
  left: 0 !important;
  top: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 10;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.hk-ref-slider .hk-ref-card:hover .hk-ref-ttl { font-size: 28px; }
}
.hk-ref-thumb {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
}
.hk-ref-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.hk-ref-thumb .hk-ref-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.28);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: background .3s;
}
.hk-ref-slider .hk-ref-card:hover .hk-ref-thumb .hk-ref-overlay {
  background: rgba(0,0,0,.45);
}
.hk-ref-slider .hk-ref-card .hk-play-btn {
  display: none;
}
.hk-ref-slider .hk-ref-card .hk-ref-ttl {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,.5);
  text-align: center;
  padding: 0 20px;
  position: static;
  white-space: normal;
  transition: font-size .3s;
}
@media (max-width: 1080px) {
  .hk-ref-slider { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .hk-ref-slider { grid-template-columns: 1fr; grid-template-rows: repeat(6, 1fr); }
}


.hk-ref-3col{position:relative;display:flex;margin-top:32px;}
.hk-ref-col{display:flex;flex-direction:column;gap:18px;justify-content:center;}
.hk-ref-col-left{position:absolute;left:0;top:0;bottom:0;width:420px;z-index:2;}
.hk-ref-col-right{position:absolute;right:0;top:0;bottom:0;width:420px;z-index:2;}
.hk-ref-col-left .hk-ref-banner,.hk-ref-col-right .hk-ref-banner{will-change:transform;transition:transform .7s cubic-bezier(.16,1,.3,1);}
.hk-ref-3col.hk-ref-playing .hk-ref-col-left .hk-ref-banner{transform:translateX(-75px);}
.hk-ref-3col.hk-ref-playing .hk-ref-col-right .hk-ref-banner{transform:translateX(75px);}
.hk-ref-3col.hk-ref-playing .hk-ref-col-left .hk-ref-banner:nth-child(1),.hk-ref-3col.hk-ref-playing .hk-ref-col-right .hk-ref-banner:nth-child(1){transition-delay:0s;}
.hk-ref-3col.hk-ref-playing .hk-ref-col-left .hk-ref-banner:nth-child(2),.hk-ref-3col.hk-ref-playing .hk-ref-col-right .hk-ref-banner:nth-child(2){transition-delay:.12s;}
.hk-ref-3col.hk-ref-playing .hk-ref-col-left .hk-ref-banner:nth-child(3),.hk-ref-3col.hk-ref-playing .hk-ref-col-right .hk-ref-banner:nth-child(3){transition-delay:.24s;}
.hk-ref-banner{display:flex;align-items:center;gap:24px;padding:16px 22px;border-radius:14px;background:#F5F5F5;border:none;outline:none;cursor:pointer;text-align:left;width:420px;max-width:none;position:relative;z-index:2;transition:background-color .3s,box-shadow .3s;font-family:inherit;box-shadow:none;}

.hk-ref-banner:hover,.hk-ref-banner.active{background-color:#C0522A;box-shadow:5px 8px 12px rgba(0,0,0,.15);}
.hk-ref-banner-ico{width:62px;height:62px;flex-shrink:0;display:flex;align-items:center;justify-content:center;}
.hk-ref-banner-ico img{width:42px;height:42px;object-fit:contain;display:block;transition:filter .3s;}
.hk-ref-banner:hover .hk-ref-banner-ico img,.hk-ref-banner.active .hk-ref-banner-ico img{filter:brightness(0) invert(1);}

.hk-ref-banner-ttl{flex:1;min-width:0;font-size:26px;font-weight:500;color:#231F20;transition:color .3s;text-align:left;}
.hk-ref-banner:hover .hk-ref-banner-ttl,.hk-ref-banner.active .hk-ref-banner-ttl{color:#fff;}

.hk-ref-banner-arrow{width:60px;height:60px;border-radius:50%;background:#fff;color:#231F20;display:flex;align-items:center;justify-content:center;flex-shrink:0;opacity:0;transform:translateX(8px);transition:opacity .4s,transform .4s;box-shadow:0 2px 8px rgba(0,0,0,.15);}
.hk-ref-banner:hover .hk-ref-banner-arrow,.hk-ref-banner.active .hk-ref-banner-arrow{opacity:1;transform:translateX(0);}
.hk-ref-col-right .hk-ref-banner{flex-direction:row-reverse;align-self:flex-end;}
.hk-ref-col-right .hk-ref-banner-ttl{text-align:right;}
.hk-ref-col-right .hk-ref-banner-arrow{transform:translateX(-8px);}
.hk-ref-col-right .hk-ref-banner:hover .hk-ref-banner-arrow,.hk-ref-col-right .hk-ref-banner.active .hk-ref-banner-arrow{transform:translateX(0);}
.hk-ref-col-right .hk-ref-banner-arrow svg{transform:scaleX(-1);}
.hk-ref-col-center{justify-content:center;flex:1 1 auto;min-width:0;margin:0 390px;position:relative;z-index:1;}
.hk-ref-3col.hk-ref-playing .hk-ref-col-center{flex:0 0 auto;}
.hk-ref-video-wrap{position:relative;width:100%;aspect-ratio:16/9;border-radius:16px;overflow:hidden;box-shadow:0 20px 50px rgba(0,0,0,.15);background:#000;}
.hk-ref-video-wrap iframe{position:absolute;inset:0;width:100%;height:100%;border:0;}
.hk-ref-video-poster{position:absolute;inset:0;background-size:cover;background-position:center;display:flex;align-items:center;justify-content:center;cursor:pointer;}
.hk-ref-video-poster::before{content:"";position:absolute;inset:0;background:rgba(0,0,0,.32);}
.hk-ref-play-btn{display:none;}
.hk-ref-play-btn:hover{transform:scale(1.08);}
@media(max-width:1080px){
.hk-ref-3col{display:grid;grid-template-columns:1fr 1fr;gap:8px;}
.hk-ref-col-left,.hk-ref-col-right{display:contents;}
.hk-ref-col-center{grid-column:1/-1;grid-row:1;margin:0 0 16px;}
.hk-ref-banner{grid-column:var(--hkRefCol,auto);grid-row:var(--hkRefRow,auto);width:100%;justify-content:center;text-align:center;padding:10px 6px;gap:0;border:1px solid #dee2e6;border-radius:8px;box-shadow:none;}
.hk-ref-banner-ico,.hk-ref-banner-arrow{display:none;}
.hk-ref-banner-ttl{font-size:14px;flex:none;}
.hk-ref-banner:hover,.hk-ref-banner.active{border-color:#C0522A;box-shadow:none;}
}


.hk-hero-slider-wrap { position: relative; overflow: hidden; margin: 105px 0 0 !important; margin-block-start: 105px !important; box-sizing: border-box; }
.hk-slider-btns { display: contents; }

@media (max-width: 1080px) {
  .hk-hero-slider-wrap {
    margin-top: 80px !important;
    margin-block-start: 80px !important;
  }
}


/* Clients logo marquee */
.hk-clients-marquee{background:var(--white);overflow:hidden;padding:40px 0;}
.hk-clients-box{overflow:hidden;}
.hk-clients-track{position:relative;display:flex;width:max-content;}
.hk-clients-track ul{display:flex;align-items:center;list-style:none;margin:0;padding:0 80px 0 0;gap:80px;flex:0 0 auto;}
.hk-clients-track li{flex:0 0 auto;display:flex;align-items:center;justify-content:center;}
.hk-clients-track img{height:72px;width:auto;max-width:none;object-fit:contain;}

.hk-header .hk-header-inner{max-width:min(1620px,90vw)!important;padding:0 30px!important;}

/* Our References: disable left/right banner split animation on tablet/mobile */
@media (max-width:1080px){
.hk-ref-3col.hk-ref-playing .hk-ref-col-left .hk-ref-banner,
.hk-ref-3col.hk-ref-playing .hk-ref-col-right .hk-ref-banner{transform:none;transition:none;}
}
/* 푸터 사회적기업 로고 (PC 전용, SNS 아이콘 하단 · 텍스트 위치 불변) */
.hk-footer-top{position:relative;}
.hk-sns a.hk-footer-se{position:absolute;right:0;top:100%;margin-top:26px;width:auto;height:auto;border:none;border-radius:0;background:none;box-shadow:none;display:block;}
.hk-sns a.hk-footer-se:hover{border:none;background:none;}
.hk-sns a.hk-footer-se img{width:156px;height:auto;object-fit:contain;display:block;filter:none;}
@media (max-width:1080px){.hk-sns a.hk-footer-se{display:none;}}


/* 푸터: 로고 + 태그라인 세로 스택 (로고 아래 태그라인) */
.hk-footer-brand{display:flex;flex-direction:column;gap:6px;}
.hk-footer-tagline{align-self:flex-start;margin-bottom:0;}
@media(max-width:480px){.hk-footer-brand{display:none;}}

.hk-footer-logo img{height:34px;}


/* 모바일 푸터: 주소/연락처 한 줄 보정 */
@media(max-width:480px){
  .hk-footer-sep2{display:none;}
  .hk-footer-addr{font-size:13px;word-break:keep-all;}
  .hk-footer-contact{font-size:13px;}
  .hk-footer-info{padding-top:20px;}
}
