.font_weight {
    font-weight: 600;
}

.sub_title {
  padding-top: 18px;
}

.sub_title h2 {
  font-size: 15px;
  font-weight: 400;
  color: #231916;
}


.sec_head {
  margin-bottom: 18px;
  
}

.sec_head h3 {
  font-size: 20px;
  font-weight: 500;
  color: #231916;
}


@media screen and (max-width:768px) {
  .sub_desc {
    font-size: 10;
    line-height: normal;
  }
}
@media screen and (max-width:500px) {
  .sub_title h2 {
    padding-top: 5px;  
  }
}

@media screen and (max-width:400px) {
  .sub_title h2 {
  }
}

/*============================
      ABOUT PAGE
============================*/
.about {
    width: 100%;
    position: relative;
    padding: 0 0 0 20px;
}
.about_main {
  width: 100%;
  gap: 20px;
}

.about_wrap {
  height: 90vh;
  display: flex;
  align-items: center;
}
.about_inner {
  width: 100%;
  display: flex;
  gap: 30px;
  margin-bottom: 130px;
}
.about_title {
  min-width: 125px;
}
.about_title h2 {
  font-size: 15px;
  font-weight: 800;
}
.about_sub_text {
  width: 80%;
}
.about_sub_text h2 {
  font-size: 14px;
  padding-top: 2px;
  padding-bottom: 15px;
  font-weight: 600;
}

.about_sub_text .about_sub {
  position: relative;
}
.about_sub_text .about_sub h3 {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
}

.dot-hr-svg{
  width: min(400px, 100%);
  height: 6px;              /* SVG height랑 맞추기 */
  margin: 32px 0 32px 1px;
}

.dot-hr-svg .dot-svg{
  width: 100%;
  height: 100%;
  display: block;
}

.about_sub_text .about_bot {
  font-weight: 400;
  font-size: 13px;
}
.about_sub_text .about_bot .first {
  padding-bottom: 15px;
}
.about_sub_text .about_bot .second {
  line-height: 1.7;
}

.about_sub_text .about_bot p:nth-child(5) {
  padding-top: 15px;
}
.about_sub_text .about_bot .last {
  line-height: 1.5;
}

@media screen and (max-width:1280px) {
  .about {
    padding: 0;
  }
}
@media screen and (max-width:960px) {
}
@media screen and (max-width:768px) {
  .about_inner {
    margin-bottom: 30px;
  }
  .sub_title {
    padding-top: 0;
  }
  .about_wrap {
    height: 380px;
  }
  
}

@media screen and (max-width:500px) {
  .about_wrap {
    height: auto;
    padding-top: 100px;
  }
  .about_inner {
    padding-top: 0;
    flex-wrap: wrap;
    gap: 35px;
    margin-bottom: 0;
  }
  .about_title {
    width: 100%;
    gap: 20px;
  }
  .dot-hr-svg {
    margin: 15px 0 15px 2px;
    width: 300px;
  }
  .about_sub_text .about_sub h3 {
    font-size: 11px;
  }
  .about_sub_text h2 {
    font-size: 13px;
  }
  .about_sub_text .about_bot {
    font-size: 11px;
  }
  .about_sub_text .about_bot .first {
    padding-bottom: 10px;
  }
  .about_sub_text .about_bot p:nth-child(5) {
    padding-top: 10px;
  }
}

@media screen and (max-width:450px) {
  .about_inner {
    flex-wrap: wrap;
  }
  .about_title {
    width: 100%;
    gap: 20px;
  }
  .about_wrap {
    height: 382px;
  }
}

@media screen and (max-width:400px) {
  .about_wrap {
    height: auto;
    margin-top: 20px;
  }
  .about_inner {
    gap: 10px;
  }
  .dot-hr-svg {
      width: min(330px, 100%);
  } 
  .about_sub_text {
    width: 100%;
  }
  /* .about_title h2 {
    font-size: 14px;
  }
  .about_sub_text h2 {
    font-size: 13px;
  }
  .about_sub_text .about_sub h3 {
    font-size: 11px;
  }
  .about_sub_text .about_bot {
    font-size: 11px;
  } */
}

/*============================
      PROJECT PAGE
============================*/
.project {
    width: 100%;
    position: relative;
    padding: 0 20px;
}

.project_wrap {
  padding-top: 45px;
  padding-left: 1px;
}

.project_wrap ul {
  column-count: 2;
  column-gap: 10px;
}

.project_wrap ul li {
  break-inside: avoid;
  margin-bottom: 10px;
  overflow: hidden;
  position: relative;
}

.project_wrap ul li a {
  overflow: hidden;
  display: block;
  position: relative;
}


.project_wrap ul li a:hover {

}

.project_wrap ul li img{
  width: 100%;
  height: 100%;
  display: block;
  object-position: center;
  object-fit: cover;
  transition: transform .6s ease, filter .35s ease;
  will-change: transform, filter;
}

.proj_overlay {
  position: absolute;
  top: -6.5px;
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 6px;
  padding: 18px;
  background: rgba(0,0,0,.35);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s ease, transform .35s ease;
}

.proj_cat {
  font-size: 10px;
  opacity: .8;
  color: #fff;
  font-family:"NanumSquare", sans-serif;
}
.proj_tit {
  font-size: 12px;
  font-weight: 300px;
  color: #fff;
}
.proj_cta {
  margin-top: 5px;
  font-size: 10px;
  opacity: .9;
  color: #fff;
}
.project_wrap ul li a:hover img,
.project_wrap ul li a:focus-visible img{
  filter: blur(4px) brightness(.8);
  transform: scale(1.03);
}

.project_wrap ul li a:hover .proj_overlay,
.project_wrap ul li a:focus-visible .proj_overlay{
  opacity: 1;
  transform: translateY(0);
}
.project_wrap ul li a:focus-visible{
  outline: 2px solid #231916;
  outline-offset: 4px;
}


@media screen and (max-width:1280px) {
  .project {
      padding: 0;
  }
}

@media screen and (max-width:768px) {
  .project_wrap ul {
    column-count: 2;
  }
}

@media screen and (max-width:500px) {
  .project {
      padding: 0;
  }
  .project_wrap ul {
    column-gap: 10px;
  }
  .project_wrap ul li {
    margin-bottom: 10px;
  }
  .proj_cat {
    font-size: 10px;
  }
  .proj_tit {
    font-size: 12px;
  }
  .proj_cta {
    margin-top: 3px;
    font-size: 8px;
  }

}
@media screen and (max-width:430px) {
  .proj_overlay {
    gap: 4px;
  }
  .proj_cat {
    font-size: 8px;
  }
  .proj_tit {
    font-size: 10px;
  }
  .proj_cta {
    margin-top: 0;
  }

}

/*============================
      PROJECT VIEW PAGE
============================*/

.project_view_wrap{
  padding-top: 45px;
  width: 100%;
}

.project_view_head{
  padding-bottom: 30px;
}

.proj_view_tit{
  font-size: 15px;
  font-weight: 600;
  color: #231916;
}

.proj_view_sub{
  margin-top: 9px;
  font-size: 12px;
  color: rgba(35, 25, 22, .7);
}

.proj_view_info{
  display: grid;
  gap: 18px;
}

.mo_view {
  display: none;
}

.proj_meta{
  display: grid;
  gap: 10px;
}

.meta_item{
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 16px;
  padding: 12px 0;
}

.meta_item:last-child {
  padding-bottom: 0;
}

.meta_item dt{
  font-size: 12px;
  color: rgba(35, 25, 22, .65);
  font-weight: 500;
}

.meta_item dd{
  font-size: 12px;
  color: #231916;
  font-weight: 400;
}


.proj_view_gallery{
  column-count: 1;
  column-gap: 20px;
  margin-left: 200px;
  max-width: 800px;
}

.proj_view_gallery li{
  break-inside: avoid;
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
}

.proj_shot{
  margin: 0;
  overflow: hidden;
  background: #f5f5f5;
}

.proj_shot img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform .6s ease, filter .35s ease;
  will-change: transform, filter;
}

.proj_shot:hover img{
  transform: scale(1.02);
  filter: brightness(.98);
}

.proj_paging{
  margin: 40px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(35, 25, 22, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.pg_list{
  display: flex;
  align-items: center;
  gap: 8px;
}

.pg_btn,
.pg_num{
  height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(35, 25, 22, .14);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #231916;
  background: transparent;
  transition: background .25s ease, color .25s ease, transform .25s ease, border-color .25s ease;
}

.pg_num{
  width: 34px;
  padding: 0;
}

.pg_btn:hover,
.pg_num:hover{
  background: rgba(35, 25, 22, .06);
  transform: translateY(-1px);
}

.pg_num.is-active{
  background: #231916;
  color: #fff;
  border-color: #231916;
}

.pg_btn.is-disabled{
  opacity: .35;
  pointer-events: none;
}

.bottom_text h2 {
  text-align: center;
  font-size: 15px;
  color: #231916;
  font-weight: 400;
  padding-top: 3px;
}
@media screen and (max-width: 1500px){
  .proj_view_gallery {
    margin: 0;
  }
}
@media screen and (max-width: 768px){
  .project_view_wrap {
    padding-top: 27px;
  }
  .project_view_head{
    display: flex;
    gap: 10px;
    justify-content: space-between;
  }
  .mo_view {
    display: block;
  }

  .proj_view_gallery{
    margin-top: 26px;
    gap: 12px;
  }
  .meta_item {
    padding: 0;
  }
  .meta_item dt,
  .meta_item dd {
    font-size: 10.666px;
  }
  .bottom_text h2 {
    font-size: 12px;
  }
}

@media screen and (max-width: 500px){
  .meta_item{
    grid-template-columns: 64px 1fr;
    gap: 12px;
  }
  .proj_view_gallery {
    margin: 0;
    gap: 10px;
  }
  .proj_overview_desc{
    font-size: 13px;
  }
  .proj_paging{
    gap: 10px;
  }
  .pg_btn{
    padding: 0 10px;
  }
}
@media screen and (max-width: 450px){
  .project_view_wrap {
    padding-top: 22px;
  }
  .proj_paging{
    margin: 30px 0 0;
    padding: 20px 0 0;
  }
  .pg_num {
    width: 25px;
  }
  .pg_btn, .pg_num {
    height: 25px;
  }
}

@media screen and (max-width: 350px){
  .meta_item{
    grid-template-columns: 55px 1fr;
  }
}


/*============================
      CONTACT PAGE
============================*/

.contact {
    width: 100%;
    position: relative;
    padding: 0 20px;
}

.contact_wrap {
    height: 90vh;
    display: flex;
    align-items: center;
}

.contact_inner {
  width: 100%;
  display: flex;
  gap: 30px;
  max-width: 1440px;
}

/* PROCESS 영역 */
.process_sec {
  width: calc(40% - 15px);
  display: flex;
  flex-direction: column;
}
.process_timeline{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 69.5px;
  padding-left: 50px;
}

.process_timeline{
  --step-gap: 69.5px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--step-gap);
  padding-left: 50px;
}

.process_card{
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0;
  background: transparent;
  width: auto;
}

.process_card::before{
  content:"";
  position: absolute;
  left: -28px;
  top: 49%;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #8f939f;
}

.process_card:not(:last-child)::after{
  content:"";
  position: absolute;
  left: -24.7px;
  top: 50%;
  transform: translateY(2px);
  width: 2px;
  height: calc(100% + 50px);
  background: repeating-linear-gradient(
    to bottom,
    #8f939f 0 2px,
    transparent 2px 20px
  );
}

/* 텍스트 */
.process_sec .step_no{
  font-size: 14px;
  color: #231916;
  letter-spacing: 0.02em;
  font-weight: 500;
}

.process_sec .step_tit{
  font-size: 13px;
  line-height: 1.35;
  color: #231916;
}

@media (max-width: 1440px) {
  .contact_wrap {
    gap: 20px;
  }
  .process_timeline {
    --step-gap: 74.5px
  }
  .process_card:not(:last-child)::after {
    height: calc(100% + var(--step-gap));
    background: repeating-linear-gradient(to bottom, #8f939f 0 2px, transparent 2px 22px);}
  .process_card {
    gap: 5px;
  }
}

@media (max-width: 1280px) {
  .process_timeline {
    --step-gap: 55.5px;
  }
  .process_card:not(:last-child)::after {
    height: calc(100% + var(--step-gap));
    background: repeating-linear-gradient(to bottom, #8f939f 0 2px, transparent 2px 23px);
  }
}

@media (max-width: 1024px) {
  .contact_wrap {
    flex-wrap: wrap;
    gap: 50px;
    height: auto;
  }
  .form_note {
    width: 100%;
    text-align: center;
  }
  .pro_tit {
    padding-top: 30px;
  }
}

@media (max-width: 768px) {
  .contact {
    padding: 0;
  }
  .pro_tit {
    padding-top: 23px;
  }
}
@media (max-width: 500px) {
  .sub_title {
    padding-top: 0;
  }
  .pro_tit {
    padding-top: 18px;
  }
}
@media (max-width: 450px) {
  .pro_tit {
    padding-top: 17px;
  }
}
@media (max-width: 360px) {
}

/* 문의 영역 */
.form_sec {
    width: calc(50% - 15px);
}
.contact_form {
  border: 1px solid rgba(35, 25, 22, .14);
  padding: clamp(18px, 3vw, 26px);
}

.form_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 18px;
}

.field label {
  display: block;
  font-size: 12px;
  margin-bottom: 10px;
  color: rgba(35, 25, 22, .65);
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(35, 25, 22, .14);
  padding: 14px;
  font-family:"NanumSquare", sans-serif;
  font-size: 14px;
  color: #231916;
  background: #fff;
  outline: none;
}

.field textarea {
  resize: vertical;
  min-height: 160px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(35, 25, 22, .40);
  
  font-family:"NanumSquare", sans-serif;
  font-size: 12px;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(35, 25, 22, .40);
  box-shadow: 0 0 0 4px rgba(35, 25, 22, .08);
}

.field_full {
  grid-column: 1 / -1;
}

.help_txt {
  font-family:"NanumSquare", sans-serif;
  margin-top: 10px;
  font-size: 11px;
  
  color: rgba(35, 25, 22, .55);
}


/* 개인정보처리방침 */
.form_consent {
    padding: 10px 0;
}
.chk_privacy{
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  color: rgba(35,25,22,.82);
  font-size: 13px;
  line-height: 1.4;
}

.chk_privacy input[type="checkbox"]{
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.chk_privacy .chk_box{
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border: 1px solid rgba(35,25,22,.25);
  border-radius: 4px;
  background: #fff;
  display: grid;
  place-items: center;
  transition: border-color .2s ease, background .2s ease, transform .15s ease;
  padding-bottom: 3px;
}

.chk_privacy .chk_box::after{
  content: "";
  width: 9px;
  height: 5px;
  border-left: 2px solid #231916;
  border-bottom: 2px solid #231916;
  transform: rotate(-45deg) scale(0);
  transform-origin: center;
  opacity: 0;
  transition: transform .16s ease, opacity .16s ease;
}

.chk_privacy input:checked + .chk_box{
  background: rgba(35,25,22,.06);
  border-color: rgba(35,25,22,.55);
}
.chk_privacy input:checked + .chk_box::after{
  transform: rotate(-45deg) scale(1);
  opacity: 1;
}

.chk_privacy input:focus-visible + .chk_box{
  outline: 2px solid rgba(35,25,22,.25);
  outline-offset: 2px;
}

.chk_privacy .chk_txt{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(35,25,22,.6);
  font-size: 11px;
}

.chk_privacy .privacy_open{
  border: 0;
  background: transparent;
  padding: 0;
  font-family:"NanumSquare", sans-serif;;
  color: rgba(35,25,22,.6);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity .2s ease;
}
.chk_privacy .privacy_open:hover{
  opacity: .75;
}
.chk_privacy .privacy_open:focus-visible{
  outline: 2px solid rgba(35,25,22,.25);
  outline-offset: 2px;
}


.privacy_open{
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  cursor: pointer;
  color: #231916;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 11px;

  
}

.privacy_open:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px rgba(35,25,22,.08);
}


/* 개인정보처리방침 팝업 */
.modal{
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
}

.modal.is-open{
  display: block;
}

.modal_dim{
  position: absolute;
  inset: 0;
  background: rgba(35,25,22,.18);
  backdrop-filter: blur(2px);
}

.modal_panel{
  position: relative;
  width: min(720px, calc(100vw - 40px));
  max-height: min(760px, calc(100vh - 60px));
  margin: 30px auto;
  background: #fff;
  border: 1px solid rgba(35,25,22,.14);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 18px 60px rgba(0,0,0,.12);
}

.modal_head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 18px;
  border-bottom: 1px solid rgba(35,25,22,.10);
}

.modal_head h3{
  font-family:"NanumSquare", sans-serif;
  font-size: 14px;
  
  font-weight: 600;
  color: #231916;
}

.modal_close{
  background: #fff;
  cursor: pointer;
}

.modal_close:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px rgba(35,25,22,.08);
}

.modal_body{
  padding: 18px 18px;
  overflow: auto;
}

.modal_lead{
  font-family:"NanumSquare", sans-serif;
  font-size: 11px;
  
  color: rgba(35,25,22,.65);
  margin-bottom: 14px;
  line-height: 1.6;
}

.policy h4{
  font-family:"NanumSquare", sans-serif;
  font-size: 12px;
  
  font-weight: 600;
  color: #231916;
  margin: 16px 0 8px;
}

.policy p,
.policy li{
  font-family:"NanumSquare", sans-serif;
  font-size: 12px;
  
  color: rgba(35,25,22,.70);
  line-height: 1.7;
}

.policy ul{
  padding-left: 18px;
  margin: 0;
}

.modal_actions{
  padding: 16px 18px;
  border-top: 1px solid rgba(35,25,22,.10);
  display: flex;
  justify-content: flex-end;
}

.btn_modal{
  border: 1px solid #231916;
  background: #231916;
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  font-family:"NanumSquare", sans-serif;
  font-size: 12px;
  
  cursor: pointer;
  transition: transform .2s ease, opacity .2s ease;
}

.btn_modal:hover{
  opacity: .92;
}

@media (max-width: 520px){
  .modal_panel{
    margin: 20px auto;
    max-height: calc(100vh - 40px);
  }
}

.form_actions {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.btn_send {
  border: 1px solid #231916;
  background: #231916;
  color: #fff;
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 12px;
  
  transition: transform .2s ease, opacity .2s ease;
}

.btn_send:hover {
  opacity: .9;
}

.form_note {
  font-size: 11px;
  
  color: rgba(35, 25, 22, .55);
}
@media (max-width: 1280px) {
  .contact_form {
    padding: 15px;
  }
  .form_sec {
    width: calc(60% - 15px);
  }
  .form_grid {
    gap: 13px;
  }
  .field input, .field textarea {
    padding: 10px;
  }
  .field textarea {
    height: 130px;
    min-height: auto;
  }
  .form_consent {
    padding-bottom: 0;
  }
  .form_actions {
    gap: 10px;
    margin-top: 15px;
    justify-content: center;
  }
  
}

@media (max-width: 1024px) {
  .contact_inner {
    flex-wrap: wrap;
  }
  .process_sec, .form_sec {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .form_grid {
    grid-template-columns: 1fr;
  }

  .sec_head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 500px) {
  .contact_inner {
    padding-top: 100px;
    gap: 80px;
  }
    .sec_head h3 {
    padding: 9px 0 0 0;
    font-size: 15px;
    font-weight: 800;
  }
}

@media (max-width:400px) {
}

@media (max-width: 350px) {
  .field input, .field textarea {
    padding: 10px 5px;
  }
  .chk_privacy .chk_txt {
    font-size: 8px;
  }
  .btn_send {
    padding: 8px 15px;
  }
  .form_note {
    font-size: 10px;
  }
}